| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| first_name | String |
|
Yes | - |
| last_name | String |
|
Yes | - |
| String |
|
Yes | - | |
| password | String? |
|
No | - |
| phone | String? |
|
No | - |
| profile_photo | String? |
|
No | - |
| role | UserRole |
|
Yes | - |
| status | UserStatus? |
|
No | - |
| is_verified | Boolean? |
|
No | - |
| is_shopify_user | Boolean? |
|
No | - |
| date_of_birth | DateTime? |
|
No | - |
| country_code | String? |
|
No | - |
| country | String? |
|
No | - |
| address | String? |
|
No | - |
| website_url | String? |
|
No | - |
| social_handles | Json? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| deleted_by | Int? |
|
No | - |
| shops | Shop[] |
|
Yes | - |
| bundles | Bundle[] |
|
Yes | - |
| bundle_elements | Bundle_Element[] |
|
Yes | - |
| elements | Element[] |
|
Yes | - |
| pricing_plans | Pricing_Plan[] |
|
Yes | - |
| faqs | Faq[] |
|
Yes | - |
| faq_categories | Faq_Category[] |
|
Yes | - |
| categories | Category[] |
|
Yes | - |
| tags | Tag[] |
|
Yes | - |
| support_tickets | Support_Ticket[] |
|
Yes | - |
| ticket_messages | Ticket_Message[] |
|
Yes | - |
| affiliators | Affiliator[] |
|
Yes | - |
| affiliator_commissions | Affiliator_Commission[] |
|
Yes | - |
| affiliator_withdraw_requests | Affiliator_Withdraw_Request[] |
|
Yes | - |
| coupons | Coupon[] |
|
Yes | - |
| user_pament_methods | User_Pament_Method[] |
|
Yes | - |
| team_members | Team_Member[] |
|
Yes | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| uuid | String |
|
Yes | - |
| user_id | Int |
|
Yes | - |
| shopify_shop_id | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| domain | String |
|
Yes | - |
| status | ShopStatus |
|
Yes | - |
| subscription_id | Int? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| user | User? |
|
No | - |
| current_subscription | Shop_Subscription? |
|
No | - |
| orders | Order[] |
|
Yes | - |
| bookmarked_elements | Bookmark[] |
|
Yes | - |
| wishlisted_elements | Wishlist[] |
|
Yes | - |
| recent_used_elements | Recent_Used_Element[] |
|
Yes | - |
| affiliator_commissions | Affiliator_Commission[] |
|
Yes | - |
Find zero or one Shop
// Get one Shop
const shop = await prisma.shop.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShopWhereUniqueInput | Yes |
Find first Shop
// Get one Shop
const shop = await prisma.shop.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShopWhereInput | No |
| orderBy | ShopOrderByWithRelationInput[] | ShopOrderByWithRelationInput | No |
| cursor | ShopWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ShopScalarFieldEnum | ShopScalarFieldEnum[] | No |
Find zero or more Shop
// Get all Shop
const Shop = await prisma.shop.findMany()
// Get first 10 Shop
const Shop = await prisma.shop.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ShopWhereInput | No |
| orderBy | ShopOrderByWithRelationInput[] | ShopOrderByWithRelationInput | No |
| cursor | ShopWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ShopScalarFieldEnum | ShopScalarFieldEnum[] | No |
Create one Shop
// Create one Shop
const Shop = await prisma.shop.create({
data: {
// ... data to create a Shop
}
})
| Name | Type | Required |
|---|---|---|
| data | ShopCreateInput | ShopUncheckedCreateInput | Yes |
Delete one Shop
// Delete one Shop
const Shop = await prisma.shop.delete({
where: {
// ... filter to delete one Shop
}
})
| Name | Type | Required |
|---|---|---|
| where | ShopWhereUniqueInput | Yes |
Update one Shop
// Update one Shop
const shop = await prisma.shop.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ShopUpdateInput | ShopUncheckedUpdateInput | Yes |
| where | ShopWhereUniqueInput | Yes |
Delete zero or more Shop
// Delete a few Shop
const { count } = await prisma.shop.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ShopWhereInput | No |
Update zero or one Shop
const { count } = await prisma.shop.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ShopUpdateManyMutationInput | ShopUncheckedUpdateManyInput | Yes |
| where | ShopWhereInput | No |
Create or update one Shop
// Update or create a Shop
const shop = await prisma.shop.upsert({
create: {
// ... data to create a Shop
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Shop we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ShopWhereUniqueInput | Yes |
| create | ShopCreateInput | ShopUncheckedCreateInput | Yes |
| update | ShopUpdateInput | ShopUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| slug | String |
|
Yes | - |
| description | String |
|
Yes | - |
| featured_image | String |
|
Yes | - |
| content | String |
|
Yes | - |
| file_name | String |
|
Yes | - |
| status | GenericStatus |
|
Yes | - |
| type | ElementType |
|
Yes | - |
| price | Decimal |
|
Yes | - |
| discount_type | DiscountType? |
|
No | - |
| discount_value | Decimal? |
|
No | - |
| demo_url | String? |
|
No | - |
| video_url | String? |
|
No | - |
| version | String? |
|
No | - |
| user_id | Int |
|
Yes | - |
| wishlisted_count | Int? |
|
No | - |
| bookmarked_count | Int? |
|
No | - |
| added_theme_count | Int? |
|
No | - |
| view_count | Int? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| deleted_by | Int? |
|
No | - |
| user | User? |
|
No | - |
| images | Element_Image[] |
|
Yes | - |
| best_Uses | Element_Best_Use[] |
|
Yes | - |
| tags | Element_Tag[] |
|
Yes | - |
| categories | Element_Category[] |
|
Yes | - |
| bundles | Bundle_Element[] |
|
Yes | - |
| wishlisted_elements | Wishlist[] |
|
Yes | - |
| bookmarked_elements | Bookmark[] |
|
Yes | - |
| recent_used_elements | Recent_Used_Element[] |
|
Yes | - |
Find zero or one Element
// Get one Element
const element = await prisma.element.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ElementWhereUniqueInput | Yes |
Find first Element
// Get one Element
const element = await prisma.element.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ElementWhereInput | No |
| orderBy | ElementOrderByWithRelationInput[] | ElementOrderByWithRelationInput | No |
| cursor | ElementWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ElementScalarFieldEnum | ElementScalarFieldEnum[] | No |
Find zero or more Element
// Get all Element
const Element = await prisma.element.findMany()
// Get first 10 Element
const Element = await prisma.element.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ElementWhereInput | No |
| orderBy | ElementOrderByWithRelationInput[] | ElementOrderByWithRelationInput | No |
| cursor | ElementWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ElementScalarFieldEnum | ElementScalarFieldEnum[] | No |
Create one Element
// Create one Element
const Element = await prisma.element.create({
data: {
// ... data to create a Element
}
})
| Name | Type | Required |
|---|---|---|
| data | ElementCreateInput | ElementUncheckedCreateInput | Yes |
Delete one Element
// Delete one Element
const Element = await prisma.element.delete({
where: {
// ... filter to delete one Element
}
})
| Name | Type | Required |
|---|---|---|
| where | ElementWhereUniqueInput | Yes |
Update one Element
// Update one Element
const element = await prisma.element.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ElementUpdateInput | ElementUncheckedUpdateInput | Yes |
| where | ElementWhereUniqueInput | Yes |
Delete zero or more Element
// Delete a few Element
const { count } = await prisma.element.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ElementWhereInput | No |
Update zero or one Element
const { count } = await prisma.element.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ElementUpdateManyMutationInput | ElementUncheckedUpdateManyInput | Yes |
| where | ElementWhereInput | No |
Create or update one Element
// Update or create a Element
const element = await prisma.element.upsert({
create: {
// ... data to create a Element
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Element we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ElementWhereUniqueInput | Yes |
| create | ElementCreateInput | ElementUncheckedCreateInput | Yes |
| update | ElementUpdateInput | ElementUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| slug | String |
|
Yes | - |
| description | String |
|
Yes | - |
| featured_image | String |
|
Yes | - |
| status | GenericStatus |
|
Yes | - |
| type | BundleType |
|
Yes | - |
| is_auto_price | Boolean? |
|
No | - |
| price | Decimal |
|
Yes | - |
| discount_type | DiscountType? |
|
No | - |
| discount_value | Decimal? |
|
No | - |
| demo_url | String? |
|
No | - |
| video_url | String? |
|
No | - |
| version | String? |
|
No | - |
| user_id | Int |
|
Yes | - |
| view_count | Int? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| deleted_by | Int? |
|
No | - |
| user | User? |
|
No | - |
| elements | Bundle_Element[] |
|
Yes | - |
| images | Bundle_Image[] |
|
Yes | - |
| categories | Bundle_Category[] |
|
Yes | - |
Find zero or one Bundle
// Get one Bundle
const bundle = await prisma.bundle.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BundleWhereUniqueInput | Yes |
Find first Bundle
// Get one Bundle
const bundle = await prisma.bundle.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BundleWhereInput | No |
| orderBy | BundleOrderByWithRelationInput[] | BundleOrderByWithRelationInput | No |
| cursor | BundleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BundleScalarFieldEnum | BundleScalarFieldEnum[] | No |
Find zero or more Bundle
// Get all Bundle
const Bundle = await prisma.bundle.findMany()
// Get first 10 Bundle
const Bundle = await prisma.bundle.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BundleWhereInput | No |
| orderBy | BundleOrderByWithRelationInput[] | BundleOrderByWithRelationInput | No |
| cursor | BundleWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BundleScalarFieldEnum | BundleScalarFieldEnum[] | No |
Create one Bundle
// Create one Bundle
const Bundle = await prisma.bundle.create({
data: {
// ... data to create a Bundle
}
})
| Name | Type | Required |
|---|---|---|
| data | BundleCreateInput | BundleUncheckedCreateInput | Yes |
Delete one Bundle
// Delete one Bundle
const Bundle = await prisma.bundle.delete({
where: {
// ... filter to delete one Bundle
}
})
| Name | Type | Required |
|---|---|---|
| where | BundleWhereUniqueInput | Yes |
Update one Bundle
// Update one Bundle
const bundle = await prisma.bundle.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BundleUpdateInput | BundleUncheckedUpdateInput | Yes |
| where | BundleWhereUniqueInput | Yes |
Delete zero or more Bundle
// Delete a few Bundle
const { count } = await prisma.bundle.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BundleWhereInput | No |
Update zero or one Bundle
const { count } = await prisma.bundle.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BundleUpdateManyMutationInput | BundleUncheckedUpdateManyInput | Yes |
| where | BundleWhereInput | No |
Create or update one Bundle
// Update or create a Bundle
const bundle = await prisma.bundle.upsert({
create: {
// ... data to create a Bundle
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Bundle we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BundleWhereUniqueInput | Yes |
| create | BundleCreateInput | BundleUncheckedCreateInput | Yes |
| update | BundleUpdateInput | BundleUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| bundle_id | Int |
|
Yes | - |
| element_id | Int |
|
Yes | - |
| element_type | ElementType |
|
Yes | - |
| status | GenericStatus |
|
Yes | - |
| user_id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| deleted_by | Int? |
|
No | - |
| user | User? |
|
No | - |
| bundle | Bundle? |
|
No | - |
| element | Element? |
|
No | - |
Find zero or one Bundle_Element
// Get one Bundle_Element
const bundle_Element = await prisma.bundle_Element.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | Yes |
Find first Bundle_Element
// Get one Bundle_Element
const bundle_Element = await prisma.bundle_Element.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_ElementWhereInput | No |
| orderBy | Bundle_ElementOrderByWithRelationInput[] | Bundle_ElementOrderByWithRelationInput | No |
| cursor | Bundle_ElementWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Bundle_ElementScalarFieldEnum | Bundle_ElementScalarFieldEnum[] | No |
Find zero or more Bundle_Element
// Get all Bundle_Element
const Bundle_Element = await prisma.bundle_Element.findMany()
// Get first 10 Bundle_Element
const Bundle_Element = await prisma.bundle_Element.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Bundle_ElementWhereInput | No |
| orderBy | Bundle_ElementOrderByWithRelationInput[] | Bundle_ElementOrderByWithRelationInput | No |
| cursor | Bundle_ElementWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Bundle_ElementScalarFieldEnum | Bundle_ElementScalarFieldEnum[] | No |
Create one Bundle_Element
// Create one Bundle_Element
const Bundle_Element = await prisma.bundle_Element.create({
data: {
// ... data to create a Bundle_Element
}
})
| Name | Type | Required |
|---|---|---|
| data | Bundle_ElementCreateInput | Bundle_ElementUncheckedCreateInput | Yes |
Delete one Bundle_Element
// Delete one Bundle_Element
const Bundle_Element = await prisma.bundle_Element.delete({
where: {
// ... filter to delete one Bundle_Element
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | Yes |
Update one Bundle_Element
// Update one Bundle_Element
const bundle_Element = await prisma.bundle_Element.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Bundle_ElementUpdateInput | Bundle_ElementUncheckedUpdateInput | Yes |
| where | Bundle_ElementWhereUniqueInput | Yes |
Delete zero or more Bundle_Element
// Delete a few Bundle_Element
const { count } = await prisma.bundle_Element.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_ElementWhereInput | No |
Update zero or one Bundle_Element
const { count } = await prisma.bundle_Element.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Bundle_ElementUpdateManyMutationInput | Bundle_ElementUncheckedUpdateManyInput | Yes |
| where | Bundle_ElementWhereInput | No |
Create or update one Bundle_Element
// Update or create a Bundle_Element
const bundle_Element = await prisma.bundle_Element.upsert({
create: {
// ... data to create a Bundle_Element
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Bundle_Element we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | Yes |
| create | Bundle_ElementCreateInput | Bundle_ElementUncheckedCreateInput | Yes |
| update | Bundle_ElementUpdateInput | Bundle_ElementUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| url | String |
|
Yes | - |
| element_id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| element | Element? |
|
No | - |
Find zero or one Element_Image
// Get one Element_Image
const element_Image = await prisma.element_Image.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_ImageWhereUniqueInput | Yes |
Find first Element_Image
// Get one Element_Image
const element_Image = await prisma.element_Image.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_ImageWhereInput | No |
| orderBy | Element_ImageOrderByWithRelationInput[] | Element_ImageOrderByWithRelationInput | No |
| cursor | Element_ImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Element_ImageScalarFieldEnum | Element_ImageScalarFieldEnum[] | No |
Find zero or more Element_Image
// Get all Element_Image
const Element_Image = await prisma.element_Image.findMany()
// Get first 10 Element_Image
const Element_Image = await prisma.element_Image.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Element_ImageWhereInput | No |
| orderBy | Element_ImageOrderByWithRelationInput[] | Element_ImageOrderByWithRelationInput | No |
| cursor | Element_ImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Element_ImageScalarFieldEnum | Element_ImageScalarFieldEnum[] | No |
Create one Element_Image
// Create one Element_Image
const Element_Image = await prisma.element_Image.create({
data: {
// ... data to create a Element_Image
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_ImageCreateInput | Element_ImageUncheckedCreateInput | Yes |
Delete one Element_Image
// Delete one Element_Image
const Element_Image = await prisma.element_Image.delete({
where: {
// ... filter to delete one Element_Image
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_ImageWhereUniqueInput | Yes |
Update one Element_Image
// Update one Element_Image
const element_Image = await prisma.element_Image.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_ImageUpdateInput | Element_ImageUncheckedUpdateInput | Yes |
| where | Element_ImageWhereUniqueInput | Yes |
Delete zero or more Element_Image
// Delete a few Element_Image
const { count } = await prisma.element_Image.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_ImageWhereInput | No |
Update zero or one Element_Image
const { count } = await prisma.element_Image.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_ImageUpdateManyMutationInput | Element_ImageUncheckedUpdateManyInput | Yes |
| where | Element_ImageWhereInput | No |
Create or update one Element_Image
// Update or create a Element_Image
const element_Image = await prisma.element_Image.upsert({
create: {
// ... data to create a Element_Image
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Element_Image we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_ImageWhereUniqueInput | Yes |
| create | Element_ImageCreateInput | Element_ImageUncheckedCreateInput | Yes |
| update | Element_ImageUpdateInput | Element_ImageUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| url | String |
|
Yes | - |
| bundle_id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| bundle | Bundle? |
|
No | - |
Find zero or one Bundle_Image
// Get one Bundle_Image
const bundle_Image = await prisma.bundle_Image.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_ImageWhereUniqueInput | Yes |
Find first Bundle_Image
// Get one Bundle_Image
const bundle_Image = await prisma.bundle_Image.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_ImageWhereInput | No |
| orderBy | Bundle_ImageOrderByWithRelationInput[] | Bundle_ImageOrderByWithRelationInput | No |
| cursor | Bundle_ImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Bundle_ImageScalarFieldEnum | Bundle_ImageScalarFieldEnum[] | No |
Find zero or more Bundle_Image
// Get all Bundle_Image
const Bundle_Image = await prisma.bundle_Image.findMany()
// Get first 10 Bundle_Image
const Bundle_Image = await prisma.bundle_Image.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Bundle_ImageWhereInput | No |
| orderBy | Bundle_ImageOrderByWithRelationInput[] | Bundle_ImageOrderByWithRelationInput | No |
| cursor | Bundle_ImageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Bundle_ImageScalarFieldEnum | Bundle_ImageScalarFieldEnum[] | No |
Create one Bundle_Image
// Create one Bundle_Image
const Bundle_Image = await prisma.bundle_Image.create({
data: {
// ... data to create a Bundle_Image
}
})
| Name | Type | Required |
|---|---|---|
| data | Bundle_ImageCreateInput | Bundle_ImageUncheckedCreateInput | Yes |
Delete one Bundle_Image
// Delete one Bundle_Image
const Bundle_Image = await prisma.bundle_Image.delete({
where: {
// ... filter to delete one Bundle_Image
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_ImageWhereUniqueInput | Yes |
Update one Bundle_Image
// Update one Bundle_Image
const bundle_Image = await prisma.bundle_Image.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Bundle_ImageUpdateInput | Bundle_ImageUncheckedUpdateInput | Yes |
| where | Bundle_ImageWhereUniqueInput | Yes |
Delete zero or more Bundle_Image
// Delete a few Bundle_Image
const { count } = await prisma.bundle_Image.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_ImageWhereInput | No |
Update zero or one Bundle_Image
const { count } = await prisma.bundle_Image.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Bundle_ImageUpdateManyMutationInput | Bundle_ImageUncheckedUpdateManyInput | Yes |
| where | Bundle_ImageWhereInput | No |
Create or update one Bundle_Image
// Update or create a Bundle_Image
const bundle_Image = await prisma.bundle_Image.upsert({
create: {
// ... data to create a Bundle_Image
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Bundle_Image we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_ImageWhereUniqueInput | Yes |
| create | Bundle_ImageCreateInput | Bundle_ImageUncheckedCreateInput | Yes |
| update | Bundle_ImageUpdateInput | Bundle_ImageUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| element_id | Int |
|
Yes | - |
| title | String |
|
Yes | - |
| description | String |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| element | Element? |
|
No | - |
Find zero or one Element_Best_Use
// Get one Element_Best_Use
const element_Best_Use = await prisma.element_Best_Use.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_Best_UseWhereUniqueInput | Yes |
Find first Element_Best_Use
// Get one Element_Best_Use
const element_Best_Use = await prisma.element_Best_Use.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_Best_UseWhereInput | No |
| orderBy | Element_Best_UseOrderByWithRelationInput[] | Element_Best_UseOrderByWithRelationInput | No |
| cursor | Element_Best_UseWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Element_Best_UseScalarFieldEnum | Element_Best_UseScalarFieldEnum[] | No |
Find zero or more Element_Best_Use
// Get all Element_Best_Use
const Element_Best_Use = await prisma.element_Best_Use.findMany()
// Get first 10 Element_Best_Use
const Element_Best_Use = await prisma.element_Best_Use.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Element_Best_UseWhereInput | No |
| orderBy | Element_Best_UseOrderByWithRelationInput[] | Element_Best_UseOrderByWithRelationInput | No |
| cursor | Element_Best_UseWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Element_Best_UseScalarFieldEnum | Element_Best_UseScalarFieldEnum[] | No |
Create one Element_Best_Use
// Create one Element_Best_Use
const Element_Best_Use = await prisma.element_Best_Use.create({
data: {
// ... data to create a Element_Best_Use
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_Best_UseCreateInput | Element_Best_UseUncheckedCreateInput | Yes |
Delete one Element_Best_Use
// Delete one Element_Best_Use
const Element_Best_Use = await prisma.element_Best_Use.delete({
where: {
// ... filter to delete one Element_Best_Use
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_Best_UseWhereUniqueInput | Yes |
Update one Element_Best_Use
// Update one Element_Best_Use
const element_Best_Use = await prisma.element_Best_Use.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_Best_UseUpdateInput | Element_Best_UseUncheckedUpdateInput | Yes |
| where | Element_Best_UseWhereUniqueInput | Yes |
Delete zero or more Element_Best_Use
// Delete a few Element_Best_Use
const { count } = await prisma.element_Best_Use.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_Best_UseWhereInput | No |
Update zero or one Element_Best_Use
const { count } = await prisma.element_Best_Use.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_Best_UseUpdateManyMutationInput | Element_Best_UseUncheckedUpdateManyInput | Yes |
| where | Element_Best_UseWhereInput | No |
Create or update one Element_Best_Use
// Update or create a Element_Best_Use
const element_Best_Use = await prisma.element_Best_Use.upsert({
create: {
// ... data to create a Element_Best_Use
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Element_Best_Use we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_Best_UseWhereUniqueInput | Yes |
| create | Element_Best_UseCreateInput | Element_Best_UseUncheckedCreateInput | Yes |
| update | Element_Best_UseUpdateInput | Element_Best_UseUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| slug | String |
|
Yes | - |
| description | String? |
|
No | - |
| type | AssetType |
|
Yes | - |
| status | GenericStatus |
|
Yes | - |
| image | String? |
|
No | - |
| banner | String? |
|
No | - |
| user_id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| deleted_by | Int? |
|
No | - |
| user | User? |
|
No | - |
| element_categories | Element_Category[] |
|
Yes | - |
| bundle_categories | Bundle_Category[] |
|
Yes | - |
Find zero or one Category
// Get one Category
const category = await prisma.category.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
Find first Category
// Get one Category
const category = await prisma.category.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
| orderBy | CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput | No |
| cursor | CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryScalarFieldEnum | CategoryScalarFieldEnum[] | No |
Find zero or more Category
// Get all Category
const Category = await prisma.category.findMany()
// Get first 10 Category
const Category = await prisma.category.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
| orderBy | CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput | No |
| cursor | CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CategoryScalarFieldEnum | CategoryScalarFieldEnum[] | No |
Create one Category
// Create one Category
const Category = await prisma.category.create({
data: {
// ... data to create a Category
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryCreateInput | CategoryUncheckedCreateInput | Yes |
Delete one Category
// Delete one Category
const Category = await prisma.category.delete({
where: {
// ... filter to delete one Category
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
Update one Category
// Update one Category
const category = await prisma.category.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryUpdateInput | CategoryUncheckedUpdateInput | Yes |
| where | CategoryWhereUniqueInput | Yes |
Delete zero or more Category
// Delete a few Category
const { count } = await prisma.category.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereInput | No |
Update zero or one Category
const { count } = await prisma.category.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyInput | Yes |
| where | CategoryWhereInput | No |
Create or update one Category
// Update or create a Category
const category = await prisma.category.upsert({
create: {
// ... data to create a Category
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Category we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CategoryWhereUniqueInput | Yes |
| create | CategoryCreateInput | CategoryUncheckedCreateInput | Yes |
| update | CategoryUpdateInput | CategoryUncheckedUpdateInput | Yes |
Find zero or one Element_Category
// Get one Element_Category
const element_Category = await prisma.element_Category.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_CategoryWhereUniqueInput | Yes |
Find first Element_Category
// Get one Element_Category
const element_Category = await prisma.element_Category.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_CategoryWhereInput | No |
| orderBy | Element_CategoryOrderByWithRelationInput[] | Element_CategoryOrderByWithRelationInput | No |
| cursor | Element_CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Element_CategoryScalarFieldEnum | Element_CategoryScalarFieldEnum[] | No |
Find zero or more Element_Category
// Get all Element_Category
const Element_Category = await prisma.element_Category.findMany()
// Get first 10 Element_Category
const Element_Category = await prisma.element_Category.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Element_CategoryWhereInput | No |
| orderBy | Element_CategoryOrderByWithRelationInput[] | Element_CategoryOrderByWithRelationInput | No |
| cursor | Element_CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Element_CategoryScalarFieldEnum | Element_CategoryScalarFieldEnum[] | No |
Create one Element_Category
// Create one Element_Category
const Element_Category = await prisma.element_Category.create({
data: {
// ... data to create a Element_Category
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_CategoryCreateInput | Element_CategoryUncheckedCreateInput | Yes |
Delete one Element_Category
// Delete one Element_Category
const Element_Category = await prisma.element_Category.delete({
where: {
// ... filter to delete one Element_Category
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_CategoryWhereUniqueInput | Yes |
Update one Element_Category
// Update one Element_Category
const element_Category = await prisma.element_Category.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_CategoryUpdateInput | Element_CategoryUncheckedUpdateInput | Yes |
| where | Element_CategoryWhereUniqueInput | Yes |
Delete zero or more Element_Category
// Delete a few Element_Category
const { count } = await prisma.element_Category.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_CategoryWhereInput | No |
Update zero or one Element_Category
const { count } = await prisma.element_Category.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_CategoryUpdateManyMutationInput | Element_CategoryUncheckedUpdateManyInput | Yes |
| where | Element_CategoryWhereInput | No |
Create or update one Element_Category
// Update or create a Element_Category
const element_Category = await prisma.element_Category.upsert({
create: {
// ... data to create a Element_Category
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Element_Category we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_CategoryWhereUniqueInput | Yes |
| create | Element_CategoryCreateInput | Element_CategoryUncheckedCreateInput | Yes |
| update | Element_CategoryUpdateInput | Element_CategoryUncheckedUpdateInput | Yes |
Find zero or one Bundle_Category
// Get one Bundle_Category
const bundle_Category = await prisma.bundle_Category.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_CategoryWhereUniqueInput | Yes |
Find first Bundle_Category
// Get one Bundle_Category
const bundle_Category = await prisma.bundle_Category.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_CategoryWhereInput | No |
| orderBy | Bundle_CategoryOrderByWithRelationInput[] | Bundle_CategoryOrderByWithRelationInput | No |
| cursor | Bundle_CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Bundle_CategoryScalarFieldEnum | Bundle_CategoryScalarFieldEnum[] | No |
Find zero or more Bundle_Category
// Get all Bundle_Category
const Bundle_Category = await prisma.bundle_Category.findMany()
// Get first 10 Bundle_Category
const Bundle_Category = await prisma.bundle_Category.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Bundle_CategoryWhereInput | No |
| orderBy | Bundle_CategoryOrderByWithRelationInput[] | Bundle_CategoryOrderByWithRelationInput | No |
| cursor | Bundle_CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Bundle_CategoryScalarFieldEnum | Bundle_CategoryScalarFieldEnum[] | No |
Create one Bundle_Category
// Create one Bundle_Category
const Bundle_Category = await prisma.bundle_Category.create({
data: {
// ... data to create a Bundle_Category
}
})
| Name | Type | Required |
|---|---|---|
| data | Bundle_CategoryCreateInput | Bundle_CategoryUncheckedCreateInput | Yes |
Delete one Bundle_Category
// Delete one Bundle_Category
const Bundle_Category = await prisma.bundle_Category.delete({
where: {
// ... filter to delete one Bundle_Category
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_CategoryWhereUniqueInput | Yes |
Update one Bundle_Category
// Update one Bundle_Category
const bundle_Category = await prisma.bundle_Category.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Bundle_CategoryUpdateInput | Bundle_CategoryUncheckedUpdateInput | Yes |
| where | Bundle_CategoryWhereUniqueInput | Yes |
Delete zero or more Bundle_Category
// Delete a few Bundle_Category
const { count } = await prisma.bundle_Category.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_CategoryWhereInput | No |
Update zero or one Bundle_Category
const { count } = await prisma.bundle_Category.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Bundle_CategoryUpdateManyMutationInput | Bundle_CategoryUncheckedUpdateManyInput | Yes |
| where | Bundle_CategoryWhereInput | No |
Create or update one Bundle_Category
// Update or create a Bundle_Category
const bundle_Category = await prisma.bundle_Category.upsert({
create: {
// ... data to create a Bundle_Category
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Bundle_Category we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Bundle_CategoryWhereUniqueInput | Yes |
| create | Bundle_CategoryCreateInput | Bundle_CategoryUncheckedCreateInput | Yes |
| update | Bundle_CategoryUpdateInput | Bundle_CategoryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| slug | String |
|
Yes | - |
| user_id | Int |
|
Yes | - |
| description | String? |
|
No | - |
| image | String? |
|
No | - |
| banner | String? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| deleted_by | Int? |
|
No | - |
| user | User? |
|
No | - |
| elements | Element_Tag[] |
|
Yes | - |
Find zero or one Tag
// Get one Tag
const tag = await prisma.tag.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TagWhereUniqueInput | Yes |
Find first Tag
// Get one Tag
const tag = await prisma.tag.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TagWhereInput | No |
| orderBy | TagOrderByWithRelationInput[] | TagOrderByWithRelationInput | No |
| cursor | TagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TagScalarFieldEnum | TagScalarFieldEnum[] | No |
Find zero or more Tag
// Get all Tag
const Tag = await prisma.tag.findMany()
// Get first 10 Tag
const Tag = await prisma.tag.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TagWhereInput | No |
| orderBy | TagOrderByWithRelationInput[] | TagOrderByWithRelationInput | No |
| cursor | TagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TagScalarFieldEnum | TagScalarFieldEnum[] | No |
Create one Tag
// Create one Tag
const Tag = await prisma.tag.create({
data: {
// ... data to create a Tag
}
})
| Name | Type | Required |
|---|---|---|
| data | TagCreateInput | TagUncheckedCreateInput | Yes |
Delete one Tag
// Delete one Tag
const Tag = await prisma.tag.delete({
where: {
// ... filter to delete one Tag
}
})
| Name | Type | Required |
|---|---|---|
| where | TagWhereUniqueInput | Yes |
Update one Tag
// Update one Tag
const tag = await prisma.tag.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TagUpdateInput | TagUncheckedUpdateInput | Yes |
| where | TagWhereUniqueInput | Yes |
Delete zero or more Tag
// Delete a few Tag
const { count } = await prisma.tag.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TagWhereInput | No |
Update zero or one Tag
const { count } = await prisma.tag.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TagUpdateManyMutationInput | TagUncheckedUpdateManyInput | Yes |
| where | TagWhereInput | No |
Create or update one Tag
// Update or create a Tag
const tag = await prisma.tag.upsert({
create: {
// ... data to create a Tag
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Tag we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TagWhereUniqueInput | Yes |
| create | TagCreateInput | TagUncheckedCreateInput | Yes |
| update | TagUpdateInput | TagUncheckedUpdateInput | Yes |
Find zero or one Element_Tag
// Get one Element_Tag
const element_Tag = await prisma.element_Tag.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_TagWhereUniqueInput | Yes |
Find first Element_Tag
// Get one Element_Tag
const element_Tag = await prisma.element_Tag.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_TagWhereInput | No |
| orderBy | Element_TagOrderByWithRelationInput[] | Element_TagOrderByWithRelationInput | No |
| cursor | Element_TagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Element_TagScalarFieldEnum | Element_TagScalarFieldEnum[] | No |
Find zero or more Element_Tag
// Get all Element_Tag
const Element_Tag = await prisma.element_Tag.findMany()
// Get first 10 Element_Tag
const Element_Tag = await prisma.element_Tag.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Element_TagWhereInput | No |
| orderBy | Element_TagOrderByWithRelationInput[] | Element_TagOrderByWithRelationInput | No |
| cursor | Element_TagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Element_TagScalarFieldEnum | Element_TagScalarFieldEnum[] | No |
Create one Element_Tag
// Create one Element_Tag
const Element_Tag = await prisma.element_Tag.create({
data: {
// ... data to create a Element_Tag
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_TagCreateInput | Element_TagUncheckedCreateInput | Yes |
Delete one Element_Tag
// Delete one Element_Tag
const Element_Tag = await prisma.element_Tag.delete({
where: {
// ... filter to delete one Element_Tag
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_TagWhereUniqueInput | Yes |
Update one Element_Tag
// Update one Element_Tag
const element_Tag = await prisma.element_Tag.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_TagUpdateInput | Element_TagUncheckedUpdateInput | Yes |
| where | Element_TagWhereUniqueInput | Yes |
Delete zero or more Element_Tag
// Delete a few Element_Tag
const { count } = await prisma.element_Tag.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_TagWhereInput | No |
Update zero or one Element_Tag
const { count } = await prisma.element_Tag.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Element_TagUpdateManyMutationInput | Element_TagUncheckedUpdateManyInput | Yes |
| where | Element_TagWhereInput | No |
Create or update one Element_Tag
// Update or create a Element_Tag
const element_Tag = await prisma.element_Tag.upsert({
create: {
// ... data to create a Element_Tag
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Element_Tag we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Element_TagWhereUniqueInput | Yes |
| create | Element_TagCreateInput | Element_TagUncheckedCreateInput | Yes |
| update | Element_TagUpdateInput | Element_TagUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| shop | String |
|
Yes | - |
| state | String? |
|
No | - |
| isOnline | Boolean |
|
Yes | - |
| scope | String |
|
Yes | - |
| userId | Int? |
|
No | - |
Find zero or one Session
// Get one Session
const session = await prisma.session.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Find first Session
// Get one Session
const session = await prisma.session.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum | SessionScalarFieldEnum[] | No |
Find zero or more Session
// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum | SessionScalarFieldEnum[] | No |
Create one Session
// Create one Session
const Session = await prisma.session.create({
data: {
// ... data to create a Session
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionCreateInput | SessionUncheckedCreateInput | Yes |
Delete one Session
// Delete one Session
const Session = await prisma.session.delete({
where: {
// ... filter to delete one Session
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Update one Session
// Update one Session
const session = await prisma.session.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
| where | SessionWhereUniqueInput | Yes |
Delete zero or more Session
// Delete a few Session
const { count } = await prisma.session.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
Update zero or one Session
const { count } = await prisma.session.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput | Yes |
| where | SessionWhereInput | No |
Create or update one Session
// Update or create a Session
const session = await prisma.session.upsert({
create: {
// ... data to create a Session
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Session we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
| create | SessionCreateInput | SessionUncheckedCreateInput | Yes |
| update | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| uuid | String |
|
Yes | - |
| shop_id | Int |
|
Yes | - |
| asset_type | AssetType |
|
Yes | - |
| status | OrderStatus |
|
Yes | - |
| sub_total | Decimal |
|
Yes | - |
| discounted_amout | Decimal? |
|
No | - |
| coupon_id | Int? |
|
No | - |
| coupon_code | String? |
|
No | - |
| coupon_discount_type | DiscountType? |
|
No | - |
| coupon_discount_value | Decimal? |
|
No | - |
| grand_total | Decimal |
|
Yes | - |
| affiliated_by | Int? |
|
No | - |
| affiliated_commission | Decimal? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| shop | Shop? |
|
No | - |
| coupon | Coupon? |
|
No | - |
| order_items | Order_Item[] |
|
Yes | - |
| affiliator_commissions | Affiliator_Commission[] |
|
Yes | - |
Find zero or one Order
// Get one Order
const order = await prisma.order.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereUniqueInput | Yes |
Find first Order
// Get one Order
const order = await prisma.order.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereInput | No |
| orderBy | OrderOrderByWithRelationInput[] | OrderOrderByWithRelationInput | No |
| cursor | OrderWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderScalarFieldEnum | OrderScalarFieldEnum[] | No |
Find zero or more Order
// Get all Order
const Order = await prisma.order.findMany()
// Get first 10 Order
const Order = await prisma.order.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | OrderWhereInput | No |
| orderBy | OrderOrderByWithRelationInput[] | OrderOrderByWithRelationInput | No |
| cursor | OrderWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | OrderScalarFieldEnum | OrderScalarFieldEnum[] | No |
Create one Order
// Create one Order
const Order = await prisma.order.create({
data: {
// ... data to create a Order
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderCreateInput | OrderUncheckedCreateInput | Yes |
Delete one Order
// Delete one Order
const Order = await prisma.order.delete({
where: {
// ... filter to delete one Order
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereUniqueInput | Yes |
Update one Order
// Update one Order
const order = await prisma.order.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderUpdateInput | OrderUncheckedUpdateInput | Yes |
| where | OrderWhereUniqueInput | Yes |
Delete zero or more Order
// Delete a few Order
const { count } = await prisma.order.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereInput | No |
Update zero or one Order
const { count } = await prisma.order.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyInput | Yes |
| where | OrderWhereInput | No |
Create or update one Order
// Update or create a Order
const order = await prisma.order.upsert({
create: {
// ... data to create a Order
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Order we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | OrderWhereUniqueInput | Yes |
| create | OrderCreateInput | OrderUncheckedCreateInput | Yes |
| update | OrderUpdateInput | OrderUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| order_id | Int |
|
Yes | - |
| asset_id | Int |
|
Yes | - |
| asset_type | AssetType |
|
Yes | - |
| price | Decimal |
|
Yes | - |
| discounted_price | Decimal? |
|
No | - |
| discount_type | DiscountType? |
|
No | - |
| discount_value | Decimal? |
|
No | - |
| order_bundle_id | Int? |
|
No | - |
| order | Order? |
|
No | - |
Find zero or one Order_Item
// Get one Order_Item
const order_Item = await prisma.order_Item.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Order_ItemWhereUniqueInput | Yes |
Find first Order_Item
// Get one Order_Item
const order_Item = await prisma.order_Item.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Order_ItemWhereInput | No |
| orderBy | Order_ItemOrderByWithRelationInput[] | Order_ItemOrderByWithRelationInput | No |
| cursor | Order_ItemWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Order_ItemScalarFieldEnum | Order_ItemScalarFieldEnum[] | No |
Find zero or more Order_Item
// Get all Order_Item
const Order_Item = await prisma.order_Item.findMany()
// Get first 10 Order_Item
const Order_Item = await prisma.order_Item.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Order_ItemWhereInput | No |
| orderBy | Order_ItemOrderByWithRelationInput[] | Order_ItemOrderByWithRelationInput | No |
| cursor | Order_ItemWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Order_ItemScalarFieldEnum | Order_ItemScalarFieldEnum[] | No |
Create one Order_Item
// Create one Order_Item
const Order_Item = await prisma.order_Item.create({
data: {
// ... data to create a Order_Item
}
})
| Name | Type | Required |
|---|---|---|
| data | Order_ItemCreateInput | Order_ItemUncheckedCreateInput | Yes |
Delete one Order_Item
// Delete one Order_Item
const Order_Item = await prisma.order_Item.delete({
where: {
// ... filter to delete one Order_Item
}
})
| Name | Type | Required |
|---|---|---|
| where | Order_ItemWhereUniqueInput | Yes |
Update one Order_Item
// Update one Order_Item
const order_Item = await prisma.order_Item.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Order_ItemUpdateInput | Order_ItemUncheckedUpdateInput | Yes |
| where | Order_ItemWhereUniqueInput | Yes |
Delete zero or more Order_Item
// Delete a few Order_Item
const { count } = await prisma.order_Item.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Order_ItemWhereInput | No |
Update zero or one Order_Item
const { count } = await prisma.order_Item.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Order_ItemUpdateManyMutationInput | Order_ItemUncheckedUpdateManyInput | Yes |
| where | Order_ItemWhereInput | No |
Create or update one Order_Item
// Update or create a Order_Item
const order_Item = await prisma.order_Item.upsert({
create: {
// ... data to create a Order_Item
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Order_Item we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Order_ItemWhereUniqueInput | Yes |
| create | Order_ItemCreateInput | Order_ItemUncheckedCreateInput | Yes |
| update | Order_ItemUpdateInput | Order_ItemUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| code | String |
|
Yes | - |
| status | CouponStatus |
|
Yes | - |
| expired_at | DateTime? |
|
No | - |
| max_total_applied | Int? |
|
No | - |
| max_applied_by_shop | Int? |
|
No | - |
| discount_type | DiscountType? |
|
No | - |
| discount_value | Decimal? |
|
No | - |
| min_order_amount | Decimal? |
|
No | - |
| max_discount_limit | Decimal? |
|
No | - |
| is_apply_on_asset_discount | Boolean? |
|
No | - |
| affiliated_by | Int? |
|
No | - |
| commission_type | DiscountType? |
|
No | - |
| commission_value | Decimal? |
|
No | - |
| user_id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| deleted_by | Int? |
|
No | - |
| affiliator | Affiliator? |
|
No | - |
| user | User? |
|
No | - |
| orders | Order[] |
|
Yes | - |
| affiliator_commissions | Affiliator_Commission[] |
|
Yes | - |
Find zero or one Coupon
// Get one Coupon
const coupon = await prisma.coupon.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CouponWhereUniqueInput | Yes |
Find first Coupon
// Get one Coupon
const coupon = await prisma.coupon.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CouponWhereInput | No |
| orderBy | CouponOrderByWithRelationInput[] | CouponOrderByWithRelationInput | No |
| cursor | CouponWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CouponScalarFieldEnum | CouponScalarFieldEnum[] | No |
Find zero or more Coupon
// Get all Coupon
const Coupon = await prisma.coupon.findMany()
// Get first 10 Coupon
const Coupon = await prisma.coupon.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CouponWhereInput | No |
| orderBy | CouponOrderByWithRelationInput[] | CouponOrderByWithRelationInput | No |
| cursor | CouponWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CouponScalarFieldEnum | CouponScalarFieldEnum[] | No |
Create one Coupon
// Create one Coupon
const Coupon = await prisma.coupon.create({
data: {
// ... data to create a Coupon
}
})
| Name | Type | Required |
|---|---|---|
| data | CouponCreateInput | CouponUncheckedCreateInput | Yes |
Delete one Coupon
// Delete one Coupon
const Coupon = await prisma.coupon.delete({
where: {
// ... filter to delete one Coupon
}
})
| Name | Type | Required |
|---|---|---|
| where | CouponWhereUniqueInput | Yes |
Update one Coupon
// Update one Coupon
const coupon = await prisma.coupon.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CouponUpdateInput | CouponUncheckedUpdateInput | Yes |
| where | CouponWhereUniqueInput | Yes |
Delete zero or more Coupon
// Delete a few Coupon
const { count } = await prisma.coupon.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CouponWhereInput | No |
Update zero or one Coupon
const { count } = await prisma.coupon.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CouponUpdateManyMutationInput | CouponUncheckedUpdateManyInput | Yes |
| where | CouponWhereInput | No |
Create or update one Coupon
// Update or create a Coupon
const coupon = await prisma.coupon.upsert({
create: {
// ... data to create a Coupon
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Coupon we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CouponWhereUniqueInput | Yes |
| create | CouponCreateInput | CouponUncheckedCreateInput | Yes |
| update | CouponUpdateInput | CouponUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| uuid | String |
|
Yes | - |
| user_id | Int |
|
Yes | - |
| invited_by | Int? |
|
No | - |
| type | AffiliatorType |
|
Yes | - |
| type_other | String? |
|
No | - |
| status | AffiliatorStatus |
|
Yes | - |
| total_earned | Decimal? |
|
No | - |
| total_paid | Decimal? |
|
No | - |
| current_coupon_id | Int? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| deleted_by | Int? |
|
No | - |
| user | User? |
|
No | - |
| affiliator_withdraw_requests | Affiliator_Withdraw_Request[] |
|
Yes | - |
| affiliator_commissions | Affiliator_Commission[] |
|
Yes | - |
| coupons | Coupon[] |
|
Yes | - |
Find zero or one Affiliator
// Get one Affiliator
const affiliator = await prisma.affiliator.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AffiliatorWhereUniqueInput | Yes |
Find first Affiliator
// Get one Affiliator
const affiliator = await prisma.affiliator.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AffiliatorWhereInput | No |
| orderBy | AffiliatorOrderByWithRelationInput[] | AffiliatorOrderByWithRelationInput | No |
| cursor | AffiliatorWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AffiliatorScalarFieldEnum | AffiliatorScalarFieldEnum[] | No |
Find zero or more Affiliator
// Get all Affiliator
const Affiliator = await prisma.affiliator.findMany()
// Get first 10 Affiliator
const Affiliator = await prisma.affiliator.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AffiliatorWhereInput | No |
| orderBy | AffiliatorOrderByWithRelationInput[] | AffiliatorOrderByWithRelationInput | No |
| cursor | AffiliatorWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AffiliatorScalarFieldEnum | AffiliatorScalarFieldEnum[] | No |
Create one Affiliator
// Create one Affiliator
const Affiliator = await prisma.affiliator.create({
data: {
// ... data to create a Affiliator
}
})
| Name | Type | Required |
|---|---|---|
| data | AffiliatorCreateInput | AffiliatorUncheckedCreateInput | Yes |
Delete one Affiliator
// Delete one Affiliator
const Affiliator = await prisma.affiliator.delete({
where: {
// ... filter to delete one Affiliator
}
})
| Name | Type | Required |
|---|---|---|
| where | AffiliatorWhereUniqueInput | Yes |
Update one Affiliator
// Update one Affiliator
const affiliator = await prisma.affiliator.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AffiliatorUpdateInput | AffiliatorUncheckedUpdateInput | Yes |
| where | AffiliatorWhereUniqueInput | Yes |
Delete zero or more Affiliator
// Delete a few Affiliator
const { count } = await prisma.affiliator.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AffiliatorWhereInput | No |
Update zero or one Affiliator
const { count } = await prisma.affiliator.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AffiliatorUpdateManyMutationInput | AffiliatorUncheckedUpdateManyInput | Yes |
| where | AffiliatorWhereInput | No |
Create or update one Affiliator
// Update or create a Affiliator
const affiliator = await prisma.affiliator.upsert({
create: {
// ... data to create a Affiliator
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Affiliator we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AffiliatorWhereUniqueInput | Yes |
| create | AffiliatorCreateInput | AffiliatorUncheckedCreateInput | Yes |
| update | AffiliatorUpdateInput | AffiliatorUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| uuid | String |
|
Yes | - |
| affiliator_id | Int |
|
Yes | - |
| user_id | Int |
|
Yes | - |
| order_id | Int? |
|
No | - |
| shop_id | Int? |
|
No | - |
| coupon_id | Int? |
|
No | - |
| coupon_code | String? |
|
No | - |
| order_amout | Decimal? |
|
No | - |
| coupon_discount_type | DiscountType? |
|
No | - |
| coupon_discount_value | Decimal? |
|
No | - |
| commission_type | DiscountType |
|
Yes | - |
| commission_value | Decimal |
|
Yes | - |
| amount | Decimal |
|
Yes | - |
| status | CommissionStatus |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| affiliator | Affiliator? |
|
No | - |
| user | User? |
|
No | - |
| order | Order? |
|
No | - |
| shop | Shop? |
|
No | - |
| coupon | Coupon? |
|
No | - |
Find zero or one Affiliator_Commission
// Get one Affiliator_Commission
const affiliator_Commission = await prisma.affiliator_Commission.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | Yes |
Find first Affiliator_Commission
// Get one Affiliator_Commission
const affiliator_Commission = await prisma.affiliator_Commission.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Affiliator_CommissionWhereInput | No |
| orderBy | Affiliator_CommissionOrderByWithRelationInput[] | Affiliator_CommissionOrderByWithRelationInput | No |
| cursor | Affiliator_CommissionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Affiliator_CommissionScalarFieldEnum | Affiliator_CommissionScalarFieldEnum[] | No |
Find zero or more Affiliator_Commission
// Get all Affiliator_Commission
const Affiliator_Commission = await prisma.affiliator_Commission.findMany()
// Get first 10 Affiliator_Commission
const Affiliator_Commission = await prisma.affiliator_Commission.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Affiliator_CommissionWhereInput | No |
| orderBy | Affiliator_CommissionOrderByWithRelationInput[] | Affiliator_CommissionOrderByWithRelationInput | No |
| cursor | Affiliator_CommissionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Affiliator_CommissionScalarFieldEnum | Affiliator_CommissionScalarFieldEnum[] | No |
Create one Affiliator_Commission
// Create one Affiliator_Commission
const Affiliator_Commission = await prisma.affiliator_Commission.create({
data: {
// ... data to create a Affiliator_Commission
}
})
| Name | Type | Required |
|---|---|---|
| data | Affiliator_CommissionCreateInput | Affiliator_CommissionUncheckedCreateInput | Yes |
Delete one Affiliator_Commission
// Delete one Affiliator_Commission
const Affiliator_Commission = await prisma.affiliator_Commission.delete({
where: {
// ... filter to delete one Affiliator_Commission
}
})
| Name | Type | Required |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | Yes |
Update one Affiliator_Commission
// Update one Affiliator_Commission
const affiliator_Commission = await prisma.affiliator_Commission.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Affiliator_CommissionUpdateInput | Affiliator_CommissionUncheckedUpdateInput | Yes |
| where | Affiliator_CommissionWhereUniqueInput | Yes |
Delete zero or more Affiliator_Commission
// Delete a few Affiliator_Commission
const { count } = await prisma.affiliator_Commission.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Affiliator_CommissionWhereInput | No |
Update zero or one Affiliator_Commission
const { count } = await prisma.affiliator_Commission.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Affiliator_CommissionUpdateManyMutationInput | Affiliator_CommissionUncheckedUpdateManyInput | Yes |
| where | Affiliator_CommissionWhereInput | No |
Create or update one Affiliator_Commission
// Update or create a Affiliator_Commission
const affiliator_Commission = await prisma.affiliator_Commission.upsert({
create: {
// ... data to create a Affiliator_Commission
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Affiliator_Commission we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | Yes |
| create | Affiliator_CommissionCreateInput | Affiliator_CommissionUncheckedCreateInput | Yes |
| update | Affiliator_CommissionUpdateInput | Affiliator_CommissionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| uuid | String |
|
Yes | - |
| affiliator_id | Int |
|
Yes | - |
| status | CommissionWithdrawStatus |
|
Yes | - |
| amount | Decimal |
|
Yes | - |
| payment_method_id | Int |
|
Yes | - |
| payment_method | PaymentMethod |
|
Yes | - |
| payment_method_details | Json |
|
Yes | - |
| assignee | Int? |
|
No | - |
| note | String? |
|
No | - |
| reject_reason | String? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| affiliator | Affiliator? |
|
No | - |
| payment_method_detail | User_Pament_Method? |
|
No | - |
| assigned_user | User? |
|
No | - |
Find zero or one Affiliator_Withdraw_Request
// Get one Affiliator_Withdraw_Request
const affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Affiliator_Withdraw_RequestWhereUniqueInput | Yes |
Find first Affiliator_Withdraw_Request
// Get one Affiliator_Withdraw_Request
const affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Affiliator_Withdraw_RequestWhereInput | No |
| orderBy | Affiliator_Withdraw_RequestOrderByWithRelationInput[] | Affiliator_Withdraw_RequestOrderByWithRelationInput | No |
| cursor | Affiliator_Withdraw_RequestWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Affiliator_Withdraw_RequestScalarFieldEnum | Affiliator_Withdraw_RequestScalarFieldEnum[] | No |
Find zero or more Affiliator_Withdraw_Request
// Get all Affiliator_Withdraw_Request
const Affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.findMany()
// Get first 10 Affiliator_Withdraw_Request
const Affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Affiliator_Withdraw_RequestWhereInput | No |
| orderBy | Affiliator_Withdraw_RequestOrderByWithRelationInput[] | Affiliator_Withdraw_RequestOrderByWithRelationInput | No |
| cursor | Affiliator_Withdraw_RequestWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Affiliator_Withdraw_RequestScalarFieldEnum | Affiliator_Withdraw_RequestScalarFieldEnum[] | No |
Create one Affiliator_Withdraw_Request
// Create one Affiliator_Withdraw_Request
const Affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.create({
data: {
// ... data to create a Affiliator_Withdraw_Request
}
})
| Name | Type | Required |
|---|---|---|
| data | Affiliator_Withdraw_RequestCreateInput | Affiliator_Withdraw_RequestUncheckedCreateInput | Yes |
Delete one Affiliator_Withdraw_Request
// Delete one Affiliator_Withdraw_Request
const Affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.delete({
where: {
// ... filter to delete one Affiliator_Withdraw_Request
}
})
| Name | Type | Required |
|---|---|---|
| where | Affiliator_Withdraw_RequestWhereUniqueInput | Yes |
Update one Affiliator_Withdraw_Request
// Update one Affiliator_Withdraw_Request
const affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Affiliator_Withdraw_RequestUpdateInput | Affiliator_Withdraw_RequestUncheckedUpdateInput | Yes |
| where | Affiliator_Withdraw_RequestWhereUniqueInput | Yes |
Delete zero or more Affiliator_Withdraw_Request
// Delete a few Affiliator_Withdraw_Request
const { count } = await prisma.affiliator_Withdraw_Request.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Affiliator_Withdraw_RequestWhereInput | No |
Update zero or one Affiliator_Withdraw_Request
const { count } = await prisma.affiliator_Withdraw_Request.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Affiliator_Withdraw_RequestUpdateManyMutationInput | Affiliator_Withdraw_RequestUncheckedUpdateManyInput | Yes |
| where | Affiliator_Withdraw_RequestWhereInput | No |
Create or update one Affiliator_Withdraw_Request
// Update or create a Affiliator_Withdraw_Request
const affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.upsert({
create: {
// ... data to create a Affiliator_Withdraw_Request
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Affiliator_Withdraw_Request we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Affiliator_Withdraw_RequestWhereUniqueInput | Yes |
| create | Affiliator_Withdraw_RequestCreateInput | Affiliator_Withdraw_RequestUncheckedCreateInput | Yes |
| update | Affiliator_Withdraw_RequestUpdateInput | Affiliator_Withdraw_RequestUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| user_id | Int |
|
Yes | - |
| method | PaymentMethod |
|
Yes | - |
| details | Json |
|
Yes | - |
| is_default | Boolean |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| user | User? |
|
No | - |
| affiliator_withdraw_requests | Affiliator_Withdraw_Request[] |
|
Yes | - |
Find zero or one User_Pament_Method
// Get one User_Pament_Method
const user_Pament_Method = await prisma.user_Pament_Method.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | User_Pament_MethodWhereUniqueInput | Yes |
Find first User_Pament_Method
// Get one User_Pament_Method
const user_Pament_Method = await prisma.user_Pament_Method.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | User_Pament_MethodWhereInput | No |
| orderBy | User_Pament_MethodOrderByWithRelationInput[] | User_Pament_MethodOrderByWithRelationInput | No |
| cursor | User_Pament_MethodWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | User_Pament_MethodScalarFieldEnum | User_Pament_MethodScalarFieldEnum[] | No |
Find zero or more User_Pament_Method
// Get all User_Pament_Method
const User_Pament_Method = await prisma.user_Pament_Method.findMany()
// Get first 10 User_Pament_Method
const User_Pament_Method = await prisma.user_Pament_Method.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | User_Pament_MethodWhereInput | No |
| orderBy | User_Pament_MethodOrderByWithRelationInput[] | User_Pament_MethodOrderByWithRelationInput | No |
| cursor | User_Pament_MethodWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | User_Pament_MethodScalarFieldEnum | User_Pament_MethodScalarFieldEnum[] | No |
Create one User_Pament_Method
// Create one User_Pament_Method
const User_Pament_Method = await prisma.user_Pament_Method.create({
data: {
// ... data to create a User_Pament_Method
}
})
| Name | Type | Required |
|---|---|---|
| data | User_Pament_MethodCreateInput | User_Pament_MethodUncheckedCreateInput | Yes |
Delete one User_Pament_Method
// Delete one User_Pament_Method
const User_Pament_Method = await prisma.user_Pament_Method.delete({
where: {
// ... filter to delete one User_Pament_Method
}
})
| Name | Type | Required |
|---|---|---|
| where | User_Pament_MethodWhereUniqueInput | Yes |
Update one User_Pament_Method
// Update one User_Pament_Method
const user_Pament_Method = await prisma.user_Pament_Method.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | User_Pament_MethodUpdateInput | User_Pament_MethodUncheckedUpdateInput | Yes |
| where | User_Pament_MethodWhereUniqueInput | Yes |
Delete zero or more User_Pament_Method
// Delete a few User_Pament_Method
const { count } = await prisma.user_Pament_Method.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | User_Pament_MethodWhereInput | No |
Update zero or one User_Pament_Method
const { count } = await prisma.user_Pament_Method.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | User_Pament_MethodUpdateManyMutationInput | User_Pament_MethodUncheckedUpdateManyInput | Yes |
| where | User_Pament_MethodWhereInput | No |
Create or update one User_Pament_Method
// Update or create a User_Pament_Method
const user_Pament_Method = await prisma.user_Pament_Method.upsert({
create: {
// ... data to create a User_Pament_Method
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User_Pament_Method we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | User_Pament_MethodWhereUniqueInput | Yes |
| create | User_Pament_MethodCreateInput | User_Pament_MethodUncheckedCreateInput | Yes |
| update | User_Pament_MethodUpdateInput | User_Pament_MethodUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| tagline | String |
|
Yes | - |
| description | String |
|
Yes | - |
| type | PricingPlanType |
|
Yes | - |
| is_recommended | Boolean |
|
Yes | - |
| is_popular | Boolean |
|
Yes | - |
| price | Decimal |
|
Yes | - |
| discounted_price | Decimal? |
|
No | - |
| yearly_discounted_price | Decimal? |
|
No | - |
| trial_period | Int? |
|
No | - |
| user_id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| deleted_by | Int? |
|
No | - |
| user | User? |
|
No | - |
| subscriptions | Shop_Subscription[] |
|
Yes | - |
| pricing_plan_features | Pricing_Plan_Feature[] |
|
Yes | - |
Find zero or one Pricing_Plan
// Get one Pricing_Plan
const pricing_Plan = await prisma.pricing_Plan.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Pricing_PlanWhereUniqueInput | Yes |
Find first Pricing_Plan
// Get one Pricing_Plan
const pricing_Plan = await prisma.pricing_Plan.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Pricing_PlanWhereInput | No |
| orderBy | Pricing_PlanOrderByWithRelationInput[] | Pricing_PlanOrderByWithRelationInput | No |
| cursor | Pricing_PlanWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Pricing_PlanScalarFieldEnum | Pricing_PlanScalarFieldEnum[] | No |
Find zero or more Pricing_Plan
// Get all Pricing_Plan
const Pricing_Plan = await prisma.pricing_Plan.findMany()
// Get first 10 Pricing_Plan
const Pricing_Plan = await prisma.pricing_Plan.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Pricing_PlanWhereInput | No |
| orderBy | Pricing_PlanOrderByWithRelationInput[] | Pricing_PlanOrderByWithRelationInput | No |
| cursor | Pricing_PlanWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Pricing_PlanScalarFieldEnum | Pricing_PlanScalarFieldEnum[] | No |
Create one Pricing_Plan
// Create one Pricing_Plan
const Pricing_Plan = await prisma.pricing_Plan.create({
data: {
// ... data to create a Pricing_Plan
}
})
| Name | Type | Required |
|---|---|---|
| data | Pricing_PlanCreateInput | Pricing_PlanUncheckedCreateInput | Yes |
Delete one Pricing_Plan
// Delete one Pricing_Plan
const Pricing_Plan = await prisma.pricing_Plan.delete({
where: {
// ... filter to delete one Pricing_Plan
}
})
| Name | Type | Required |
|---|---|---|
| where | Pricing_PlanWhereUniqueInput | Yes |
Update one Pricing_Plan
// Update one Pricing_Plan
const pricing_Plan = await prisma.pricing_Plan.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Pricing_PlanUpdateInput | Pricing_PlanUncheckedUpdateInput | Yes |
| where | Pricing_PlanWhereUniqueInput | Yes |
Delete zero or more Pricing_Plan
// Delete a few Pricing_Plan
const { count } = await prisma.pricing_Plan.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Pricing_PlanWhereInput | No |
Update zero or one Pricing_Plan
const { count } = await prisma.pricing_Plan.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Pricing_PlanUpdateManyMutationInput | Pricing_PlanUncheckedUpdateManyInput | Yes |
| where | Pricing_PlanWhereInput | No |
Create or update one Pricing_Plan
// Update or create a Pricing_Plan
const pricing_Plan = await prisma.pricing_Plan.upsert({
create: {
// ... data to create a Pricing_Plan
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Pricing_Plan we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Pricing_PlanWhereUniqueInput | Yes |
| create | Pricing_PlanCreateInput | Pricing_PlanUncheckedCreateInput | Yes |
| update | Pricing_PlanUpdateInput | Pricing_PlanUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| plan_id | Int |
|
Yes | - |
| title | String |
|
Yes | - |
| type | String? |
|
No | - |
| description | String? |
|
No | - |
| pricing_plan | Pricing_Plan? |
|
No | - |
Find zero or one Pricing_Plan_Feature
// Get one Pricing_Plan_Feature
const pricing_Plan_Feature = await prisma.pricing_Plan_Feature.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Pricing_Plan_FeatureWhereUniqueInput | Yes |
Find first Pricing_Plan_Feature
// Get one Pricing_Plan_Feature
const pricing_Plan_Feature = await prisma.pricing_Plan_Feature.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Pricing_Plan_FeatureWhereInput | No |
| orderBy | Pricing_Plan_FeatureOrderByWithRelationInput[] | Pricing_Plan_FeatureOrderByWithRelationInput | No |
| cursor | Pricing_Plan_FeatureWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Pricing_Plan_FeatureScalarFieldEnum | Pricing_Plan_FeatureScalarFieldEnum[] | No |
Find zero or more Pricing_Plan_Feature
// Get all Pricing_Plan_Feature
const Pricing_Plan_Feature = await prisma.pricing_Plan_Feature.findMany()
// Get first 10 Pricing_Plan_Feature
const Pricing_Plan_Feature = await prisma.pricing_Plan_Feature.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Pricing_Plan_FeatureWhereInput | No |
| orderBy | Pricing_Plan_FeatureOrderByWithRelationInput[] | Pricing_Plan_FeatureOrderByWithRelationInput | No |
| cursor | Pricing_Plan_FeatureWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Pricing_Plan_FeatureScalarFieldEnum | Pricing_Plan_FeatureScalarFieldEnum[] | No |
Create one Pricing_Plan_Feature
// Create one Pricing_Plan_Feature
const Pricing_Plan_Feature = await prisma.pricing_Plan_Feature.create({
data: {
// ... data to create a Pricing_Plan_Feature
}
})
| Name | Type | Required |
|---|---|---|
| data | Pricing_Plan_FeatureCreateInput | Pricing_Plan_FeatureUncheckedCreateInput | Yes |
Delete one Pricing_Plan_Feature
// Delete one Pricing_Plan_Feature
const Pricing_Plan_Feature = await prisma.pricing_Plan_Feature.delete({
where: {
// ... filter to delete one Pricing_Plan_Feature
}
})
| Name | Type | Required |
|---|---|---|
| where | Pricing_Plan_FeatureWhereUniqueInput | Yes |
Update one Pricing_Plan_Feature
// Update one Pricing_Plan_Feature
const pricing_Plan_Feature = await prisma.pricing_Plan_Feature.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Pricing_Plan_FeatureUpdateInput | Pricing_Plan_FeatureUncheckedUpdateInput | Yes |
| where | Pricing_Plan_FeatureWhereUniqueInput | Yes |
Delete zero or more Pricing_Plan_Feature
// Delete a few Pricing_Plan_Feature
const { count } = await prisma.pricing_Plan_Feature.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Pricing_Plan_FeatureWhereInput | No |
Update zero or one Pricing_Plan_Feature
const { count } = await prisma.pricing_Plan_Feature.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Pricing_Plan_FeatureUpdateManyMutationInput | Pricing_Plan_FeatureUncheckedUpdateManyInput | Yes |
| where | Pricing_Plan_FeatureWhereInput | No |
Create or update one Pricing_Plan_Feature
// Update or create a Pricing_Plan_Feature
const pricing_Plan_Feature = await prisma.pricing_Plan_Feature.upsert({
create: {
// ... data to create a Pricing_Plan_Feature
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Pricing_Plan_Feature we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Pricing_Plan_FeatureWhereUniqueInput | Yes |
| create | Pricing_Plan_FeatureCreateInput | Pricing_Plan_FeatureUncheckedCreateInput | Yes |
| update | Pricing_Plan_FeatureUpdateInput | Pricing_Plan_FeatureUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| uuid | String |
|
Yes | - |
| shop_id | Int |
|
Yes | - |
| plan_id | Int |
|
Yes | - |
| plan_type | PricingPlanType |
|
Yes | - |
| status | SubscriptionStatus |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| ended_at | DateTime? |
|
No | - |
| ended_type | SubscriptionEndedType? |
|
No | - |
| updated_at | DateTime |
|
Yes | - |
| amount | Decimal |
|
Yes | - |
| payment_method | PaymentMethod |
|
Yes | - |
| plan | Pricing_Plan? |
|
No | - |
| shops | Shop[] |
|
Yes | - |
Find zero or one Shop_Subscription
// Get one Shop_Subscription
const shop_Subscription = await prisma.shop_Subscription.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Shop_SubscriptionWhereUniqueInput | Yes |
Find first Shop_Subscription
// Get one Shop_Subscription
const shop_Subscription = await prisma.shop_Subscription.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Shop_SubscriptionWhereInput | No |
| orderBy | Shop_SubscriptionOrderByWithRelationInput[] | Shop_SubscriptionOrderByWithRelationInput | No |
| cursor | Shop_SubscriptionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Shop_SubscriptionScalarFieldEnum | Shop_SubscriptionScalarFieldEnum[] | No |
Find zero or more Shop_Subscription
// Get all Shop_Subscription
const Shop_Subscription = await prisma.shop_Subscription.findMany()
// Get first 10 Shop_Subscription
const Shop_Subscription = await prisma.shop_Subscription.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Shop_SubscriptionWhereInput | No |
| orderBy | Shop_SubscriptionOrderByWithRelationInput[] | Shop_SubscriptionOrderByWithRelationInput | No |
| cursor | Shop_SubscriptionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Shop_SubscriptionScalarFieldEnum | Shop_SubscriptionScalarFieldEnum[] | No |
Create one Shop_Subscription
// Create one Shop_Subscription
const Shop_Subscription = await prisma.shop_Subscription.create({
data: {
// ... data to create a Shop_Subscription
}
})
| Name | Type | Required |
|---|---|---|
| data | Shop_SubscriptionCreateInput | Shop_SubscriptionUncheckedCreateInput | Yes |
Delete one Shop_Subscription
// Delete one Shop_Subscription
const Shop_Subscription = await prisma.shop_Subscription.delete({
where: {
// ... filter to delete one Shop_Subscription
}
})
| Name | Type | Required |
|---|---|---|
| where | Shop_SubscriptionWhereUniqueInput | Yes |
Update one Shop_Subscription
// Update one Shop_Subscription
const shop_Subscription = await prisma.shop_Subscription.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Shop_SubscriptionUpdateInput | Shop_SubscriptionUncheckedUpdateInput | Yes |
| where | Shop_SubscriptionWhereUniqueInput | Yes |
Delete zero or more Shop_Subscription
// Delete a few Shop_Subscription
const { count } = await prisma.shop_Subscription.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Shop_SubscriptionWhereInput | No |
Update zero or one Shop_Subscription
const { count } = await prisma.shop_Subscription.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Shop_SubscriptionUpdateManyMutationInput | Shop_SubscriptionUncheckedUpdateManyInput | Yes |
| where | Shop_SubscriptionWhereInput | No |
Create or update one Shop_Subscription
// Update or create a Shop_Subscription
const shop_Subscription = await prisma.shop_Subscription.upsert({
create: {
// ... data to create a Shop_Subscription
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Shop_Subscription we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Shop_SubscriptionWhereUniqueInput | Yes |
| create | Shop_SubscriptionCreateInput | Shop_SubscriptionUncheckedCreateInput | Yes |
| update | Shop_SubscriptionUpdateInput | Shop_SubscriptionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| user_id | Int |
|
Yes | - |
| question | String |
|
Yes | - |
| answer | String |
|
Yes | - |
| status | FaqStatus |
|
Yes | - |
| category_id | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| deleted_by | Int? |
|
No | - |
| user | User? |
|
No | - |
| category | Faq_Category? |
|
No | - |
Find zero or one Faq
// Get one Faq
const faq = await prisma.faq.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FaqWhereUniqueInput | Yes |
Find first Faq
// Get one Faq
const faq = await prisma.faq.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FaqWhereInput | No |
| orderBy | FaqOrderByWithRelationInput[] | FaqOrderByWithRelationInput | No |
| cursor | FaqWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FaqScalarFieldEnum | FaqScalarFieldEnum[] | No |
Find zero or more Faq
// Get all Faq
const Faq = await prisma.faq.findMany()
// Get first 10 Faq
const Faq = await prisma.faq.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FaqWhereInput | No |
| orderBy | FaqOrderByWithRelationInput[] | FaqOrderByWithRelationInput | No |
| cursor | FaqWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FaqScalarFieldEnum | FaqScalarFieldEnum[] | No |
Create one Faq
// Create one Faq
const Faq = await prisma.faq.create({
data: {
// ... data to create a Faq
}
})
| Name | Type | Required |
|---|---|---|
| data | FaqCreateInput | FaqUncheckedCreateInput | Yes |
Delete one Faq
// Delete one Faq
const Faq = await prisma.faq.delete({
where: {
// ... filter to delete one Faq
}
})
| Name | Type | Required |
|---|---|---|
| where | FaqWhereUniqueInput | Yes |
Update one Faq
// Update one Faq
const faq = await prisma.faq.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FaqUpdateInput | FaqUncheckedUpdateInput | Yes |
| where | FaqWhereUniqueInput | Yes |
Delete zero or more Faq
// Delete a few Faq
const { count } = await prisma.faq.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FaqWhereInput | No |
Update zero or one Faq
const { count } = await prisma.faq.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FaqUpdateManyMutationInput | FaqUncheckedUpdateManyInput | Yes |
| where | FaqWhereInput | No |
Create or update one Faq
// Update or create a Faq
const faq = await prisma.faq.upsert({
create: {
// ... data to create a Faq
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Faq we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FaqWhereUniqueInput | Yes |
| create | FaqCreateInput | FaqUncheckedCreateInput | Yes |
| update | FaqUpdateInput | FaqUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| name | String |
|
Yes | - |
| user_id | Int |
|
Yes | - |
| description | String? |
|
No | - |
| banner | String? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| deleted_at | DateTime? |
|
No | - |
| deleted_by | Int? |
|
No | - |
| user | User? |
|
No | - |
| faqs | Faq[] |
|
Yes | - |
Find zero or one Faq_Category
// Get one Faq_Category
const faq_Category = await prisma.faq_Category.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Faq_CategoryWhereUniqueInput | Yes |
Find first Faq_Category
// Get one Faq_Category
const faq_Category = await prisma.faq_Category.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Faq_CategoryWhereInput | No |
| orderBy | Faq_CategoryOrderByWithRelationInput[] | Faq_CategoryOrderByWithRelationInput | No |
| cursor | Faq_CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Faq_CategoryScalarFieldEnum | Faq_CategoryScalarFieldEnum[] | No |
Find zero or more Faq_Category
// Get all Faq_Category
const Faq_Category = await prisma.faq_Category.findMany()
// Get first 10 Faq_Category
const Faq_Category = await prisma.faq_Category.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Faq_CategoryWhereInput | No |
| orderBy | Faq_CategoryOrderByWithRelationInput[] | Faq_CategoryOrderByWithRelationInput | No |
| cursor | Faq_CategoryWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Faq_CategoryScalarFieldEnum | Faq_CategoryScalarFieldEnum[] | No |
Create one Faq_Category
// Create one Faq_Category
const Faq_Category = await prisma.faq_Category.create({
data: {
// ... data to create a Faq_Category
}
})
| Name | Type | Required |
|---|---|---|
| data | Faq_CategoryCreateInput | Faq_CategoryUncheckedCreateInput | Yes |
Delete one Faq_Category
// Delete one Faq_Category
const Faq_Category = await prisma.faq_Category.delete({
where: {
// ... filter to delete one Faq_Category
}
})
| Name | Type | Required |
|---|---|---|
| where | Faq_CategoryWhereUniqueInput | Yes |
Update one Faq_Category
// Update one Faq_Category
const faq_Category = await prisma.faq_Category.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Faq_CategoryUpdateInput | Faq_CategoryUncheckedUpdateInput | Yes |
| where | Faq_CategoryWhereUniqueInput | Yes |
Delete zero or more Faq_Category
// Delete a few Faq_Category
const { count } = await prisma.faq_Category.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Faq_CategoryWhereInput | No |
Update zero or one Faq_Category
const { count } = await prisma.faq_Category.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Faq_CategoryUpdateManyMutationInput | Faq_CategoryUncheckedUpdateManyInput | Yes |
| where | Faq_CategoryWhereInput | No |
Create or update one Faq_Category
// Update or create a Faq_Category
const faq_Category = await prisma.faq_Category.upsert({
create: {
// ... data to create a Faq_Category
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Faq_Category we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Faq_CategoryWhereUniqueInput | Yes |
| create | Faq_CategoryCreateInput | Faq_CategoryUncheckedCreateInput | Yes |
| update | Faq_CategoryUpdateInput | Faq_CategoryUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| uuid | String |
|
Yes | - |
| url | String |
|
Yes | - |
| type | AttachmentType |
|
Yes | - |
| ref_id | Int |
|
Yes | - |
| ref_type | AttachmentRefType |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
Find zero or one Attachment
// Get one Attachment
const attachment = await prisma.attachment.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereUniqueInput | Yes |
Find first Attachment
// Get one Attachment
const attachment = await prisma.attachment.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereInput | No |
| orderBy | AttachmentOrderByWithRelationInput[] | AttachmentOrderByWithRelationInput | No |
| cursor | AttachmentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AttachmentScalarFieldEnum | AttachmentScalarFieldEnum[] | No |
Find zero or more Attachment
// Get all Attachment
const Attachment = await prisma.attachment.findMany()
// Get first 10 Attachment
const Attachment = await prisma.attachment.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereInput | No |
| orderBy | AttachmentOrderByWithRelationInput[] | AttachmentOrderByWithRelationInput | No |
| cursor | AttachmentWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AttachmentScalarFieldEnum | AttachmentScalarFieldEnum[] | No |
Create one Attachment
// Create one Attachment
const Attachment = await prisma.attachment.create({
data: {
// ... data to create a Attachment
}
})
| Name | Type | Required |
|---|---|---|
| data | AttachmentCreateInput | AttachmentUncheckedCreateInput | Yes |
Delete one Attachment
// Delete one Attachment
const Attachment = await prisma.attachment.delete({
where: {
// ... filter to delete one Attachment
}
})
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereUniqueInput | Yes |
Update one Attachment
// Update one Attachment
const attachment = await prisma.attachment.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AttachmentUpdateInput | AttachmentUncheckedUpdateInput | Yes |
| where | AttachmentWhereUniqueInput | Yes |
Delete zero or more Attachment
// Delete a few Attachment
const { count } = await prisma.attachment.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereInput | No |
Update zero or one Attachment
const { count } = await prisma.attachment.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AttachmentUpdateManyMutationInput | AttachmentUncheckedUpdateManyInput | Yes |
| where | AttachmentWhereInput | No |
Create or update one Attachment
// Update or create a Attachment
const attachment = await prisma.attachment.upsert({
create: {
// ... data to create a Attachment
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Attachment we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AttachmentWhereUniqueInput | Yes |
| create | AttachmentCreateInput | AttachmentUncheckedCreateInput | Yes |
| update | AttachmentUpdateInput | AttachmentUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| shop_id | Int |
|
Yes | - |
| element_id | Int |
|
Yes | - |
| element_type | ElementType |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| shop | Shop? |
|
No | - |
| element | Element? |
|
No | - |
Find zero or one Wishlist
// Get one Wishlist
const wishlist = await prisma.wishlist.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | WishlistWhereUniqueInput | Yes |
Find first Wishlist
// Get one Wishlist
const wishlist = await prisma.wishlist.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | WishlistWhereInput | No |
| orderBy | WishlistOrderByWithRelationInput[] | WishlistOrderByWithRelationInput | No |
| cursor | WishlistWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | WishlistScalarFieldEnum | WishlistScalarFieldEnum[] | No |
Find zero or more Wishlist
// Get all Wishlist
const Wishlist = await prisma.wishlist.findMany()
// Get first 10 Wishlist
const Wishlist = await prisma.wishlist.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | WishlistWhereInput | No |
| orderBy | WishlistOrderByWithRelationInput[] | WishlistOrderByWithRelationInput | No |
| cursor | WishlistWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | WishlistScalarFieldEnum | WishlistScalarFieldEnum[] | No |
Create one Wishlist
// Create one Wishlist
const Wishlist = await prisma.wishlist.create({
data: {
// ... data to create a Wishlist
}
})
| Name | Type | Required |
|---|---|---|
| data | WishlistCreateInput | WishlistUncheckedCreateInput | Yes |
Delete one Wishlist
// Delete one Wishlist
const Wishlist = await prisma.wishlist.delete({
where: {
// ... filter to delete one Wishlist
}
})
| Name | Type | Required |
|---|---|---|
| where | WishlistWhereUniqueInput | Yes |
Update one Wishlist
// Update one Wishlist
const wishlist = await prisma.wishlist.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | WishlistUpdateInput | WishlistUncheckedUpdateInput | Yes |
| where | WishlistWhereUniqueInput | Yes |
Delete zero or more Wishlist
// Delete a few Wishlist
const { count } = await prisma.wishlist.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | WishlistWhereInput | No |
Update zero or one Wishlist
const { count } = await prisma.wishlist.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | WishlistUpdateManyMutationInput | WishlistUncheckedUpdateManyInput | Yes |
| where | WishlistWhereInput | No |
Create or update one Wishlist
// Update or create a Wishlist
const wishlist = await prisma.wishlist.upsert({
create: {
// ... data to create a Wishlist
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Wishlist we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | WishlistWhereUniqueInput | Yes |
| create | WishlistCreateInput | WishlistUncheckedCreateInput | Yes |
| update | WishlistUpdateInput | WishlistUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| shop_id | Int |
|
Yes | - |
| element_id | Int |
|
Yes | - |
| element_type | ElementType |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| shop | Shop? |
|
No | - |
| element | Element? |
|
No | - |
Find zero or one Bookmark
// Get one Bookmark
const bookmark = await prisma.bookmark.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereUniqueInput | Yes |
Find first Bookmark
// Get one Bookmark
const bookmark = await prisma.bookmark.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereInput | No |
| orderBy | BookmarkOrderByWithRelationInput[] | BookmarkOrderByWithRelationInput | No |
| cursor | BookmarkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BookmarkScalarFieldEnum | BookmarkScalarFieldEnum[] | No |
Find zero or more Bookmark
// Get all Bookmark
const Bookmark = await prisma.bookmark.findMany()
// Get first 10 Bookmark
const Bookmark = await prisma.bookmark.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereInput | No |
| orderBy | BookmarkOrderByWithRelationInput[] | BookmarkOrderByWithRelationInput | No |
| cursor | BookmarkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BookmarkScalarFieldEnum | BookmarkScalarFieldEnum[] | No |
Create one Bookmark
// Create one Bookmark
const Bookmark = await prisma.bookmark.create({
data: {
// ... data to create a Bookmark
}
})
| Name | Type | Required |
|---|---|---|
| data | BookmarkCreateInput | BookmarkUncheckedCreateInput | Yes |
Delete one Bookmark
// Delete one Bookmark
const Bookmark = await prisma.bookmark.delete({
where: {
// ... filter to delete one Bookmark
}
})
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereUniqueInput | Yes |
Update one Bookmark
// Update one Bookmark
const bookmark = await prisma.bookmark.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BookmarkUpdateInput | BookmarkUncheckedUpdateInput | Yes |
| where | BookmarkWhereUniqueInput | Yes |
Delete zero or more Bookmark
// Delete a few Bookmark
const { count } = await prisma.bookmark.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereInput | No |
Update zero or one Bookmark
const { count } = await prisma.bookmark.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyInput | Yes |
| where | BookmarkWhereInput | No |
Create or update one Bookmark
// Update or create a Bookmark
const bookmark = await prisma.bookmark.upsert({
create: {
// ... data to create a Bookmark
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Bookmark we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereUniqueInput | Yes |
| create | BookmarkCreateInput | BookmarkUncheckedCreateInput | Yes |
| update | BookmarkUpdateInput | BookmarkUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| shop_id | Int |
|
Yes | - |
| element_id | Int |
|
Yes | - |
| element_type | ElementType |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| shop | Shop? |
|
No | - |
| element | Element? |
|
No | - |
Find zero or one Recent_Used_Element
// Get one Recent_Used_Element
const recent_Used_Element = await prisma.recent_Used_Element.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Recent_Used_ElementWhereUniqueInput | Yes |
Find first Recent_Used_Element
// Get one Recent_Used_Element
const recent_Used_Element = await prisma.recent_Used_Element.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Recent_Used_ElementWhereInput | No |
| orderBy | Recent_Used_ElementOrderByWithRelationInput[] | Recent_Used_ElementOrderByWithRelationInput | No |
| cursor | Recent_Used_ElementWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Recent_Used_ElementScalarFieldEnum | Recent_Used_ElementScalarFieldEnum[] | No |
Find zero or more Recent_Used_Element
// Get all Recent_Used_Element
const Recent_Used_Element = await prisma.recent_Used_Element.findMany()
// Get first 10 Recent_Used_Element
const Recent_Used_Element = await prisma.recent_Used_Element.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Recent_Used_ElementWhereInput | No |
| orderBy | Recent_Used_ElementOrderByWithRelationInput[] | Recent_Used_ElementOrderByWithRelationInput | No |
| cursor | Recent_Used_ElementWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Recent_Used_ElementScalarFieldEnum | Recent_Used_ElementScalarFieldEnum[] | No |
Create one Recent_Used_Element
// Create one Recent_Used_Element
const Recent_Used_Element = await prisma.recent_Used_Element.create({
data: {
// ... data to create a Recent_Used_Element
}
})
| Name | Type | Required |
|---|---|---|
| data | Recent_Used_ElementCreateInput | Recent_Used_ElementUncheckedCreateInput | Yes |
Delete one Recent_Used_Element
// Delete one Recent_Used_Element
const Recent_Used_Element = await prisma.recent_Used_Element.delete({
where: {
// ... filter to delete one Recent_Used_Element
}
})
| Name | Type | Required |
|---|---|---|
| where | Recent_Used_ElementWhereUniqueInput | Yes |
Update one Recent_Used_Element
// Update one Recent_Used_Element
const recent_Used_Element = await prisma.recent_Used_Element.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Recent_Used_ElementUpdateInput | Recent_Used_ElementUncheckedUpdateInput | Yes |
| where | Recent_Used_ElementWhereUniqueInput | Yes |
Delete zero or more Recent_Used_Element
// Delete a few Recent_Used_Element
const { count } = await prisma.recent_Used_Element.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Recent_Used_ElementWhereInput | No |
Update zero or one Recent_Used_Element
const { count } = await prisma.recent_Used_Element.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Recent_Used_ElementUpdateManyMutationInput | Recent_Used_ElementUncheckedUpdateManyInput | Yes |
| where | Recent_Used_ElementWhereInput | No |
Create or update one Recent_Used_Element
// Update or create a Recent_Used_Element
const recent_Used_Element = await prisma.recent_Used_Element.upsert({
create: {
// ... data to create a Recent_Used_Element
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Recent_Used_Element we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Recent_Used_ElementWhereUniqueInput | Yes |
| create | Recent_Used_ElementCreateInput | Recent_Used_ElementUncheckedCreateInput | Yes |
| update | Recent_Used_ElementUpdateInput | Recent_Used_ElementUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| uuid | String |
|
Yes | - |
| user_id | Int |
|
Yes | - |
| ref_id | Int |
|
Yes | - |
| ref_type | SupportRefType |
|
Yes | - |
| criteria | SupportCriteria |
|
Yes | - |
| reason | String |
|
Yes | - |
| description | String |
|
Yes | - |
| status | SupportStatus? |
|
No | - |
| label | SupportLabel? |
|
No | - |
| assignee | Int? |
|
No | - |
| assigned_at | DateTime? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| user | User? |
|
No | - |
| ticket_messages | Ticket_Message[] |
|
Yes | - |
Find zero or one Support_Ticket
// Get one Support_Ticket
const support_Ticket = await prisma.support_Ticket.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Support_TicketWhereUniqueInput | Yes |
Find first Support_Ticket
// Get one Support_Ticket
const support_Ticket = await prisma.support_Ticket.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Support_TicketWhereInput | No |
| orderBy | Support_TicketOrderByWithRelationInput[] | Support_TicketOrderByWithRelationInput | No |
| cursor | Support_TicketWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Support_TicketScalarFieldEnum | Support_TicketScalarFieldEnum[] | No |
Find zero or more Support_Ticket
// Get all Support_Ticket
const Support_Ticket = await prisma.support_Ticket.findMany()
// Get first 10 Support_Ticket
const Support_Ticket = await prisma.support_Ticket.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Support_TicketWhereInput | No |
| orderBy | Support_TicketOrderByWithRelationInput[] | Support_TicketOrderByWithRelationInput | No |
| cursor | Support_TicketWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Support_TicketScalarFieldEnum | Support_TicketScalarFieldEnum[] | No |
Create one Support_Ticket
// Create one Support_Ticket
const Support_Ticket = await prisma.support_Ticket.create({
data: {
// ... data to create a Support_Ticket
}
})
| Name | Type | Required |
|---|---|---|
| data | Support_TicketCreateInput | Support_TicketUncheckedCreateInput | Yes |
Delete one Support_Ticket
// Delete one Support_Ticket
const Support_Ticket = await prisma.support_Ticket.delete({
where: {
// ... filter to delete one Support_Ticket
}
})
| Name | Type | Required |
|---|---|---|
| where | Support_TicketWhereUniqueInput | Yes |
Update one Support_Ticket
// Update one Support_Ticket
const support_Ticket = await prisma.support_Ticket.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Support_TicketUpdateInput | Support_TicketUncheckedUpdateInput | Yes |
| where | Support_TicketWhereUniqueInput | Yes |
Delete zero or more Support_Ticket
// Delete a few Support_Ticket
const { count } = await prisma.support_Ticket.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Support_TicketWhereInput | No |
Update zero or one Support_Ticket
const { count } = await prisma.support_Ticket.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Support_TicketUpdateManyMutationInput | Support_TicketUncheckedUpdateManyInput | Yes |
| where | Support_TicketWhereInput | No |
Create or update one Support_Ticket
// Update or create a Support_Ticket
const support_Ticket = await prisma.support_Ticket.upsert({
create: {
// ... data to create a Support_Ticket
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Support_Ticket we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Support_TicketWhereUniqueInput | Yes |
| create | Support_TicketCreateInput | Support_TicketUncheckedCreateInput | Yes |
| update | Support_TicketUpdateInput | Support_TicketUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| ticket_id | Int |
|
Yes | - |
| user_id | Int |
|
Yes | - |
| message | String |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| user | User? |
|
No | - |
| support_ticket | Support_Ticket? |
|
No | - |
Find zero or one Ticket_Message
// Get one Ticket_Message
const ticket_Message = await prisma.ticket_Message.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Ticket_MessageWhereUniqueInput | Yes |
Find first Ticket_Message
// Get one Ticket_Message
const ticket_Message = await prisma.ticket_Message.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Ticket_MessageWhereInput | No |
| orderBy | Ticket_MessageOrderByWithRelationInput[] | Ticket_MessageOrderByWithRelationInput | No |
| cursor | Ticket_MessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Ticket_MessageScalarFieldEnum | Ticket_MessageScalarFieldEnum[] | No |
Find zero or more Ticket_Message
// Get all Ticket_Message
const Ticket_Message = await prisma.ticket_Message.findMany()
// Get first 10 Ticket_Message
const Ticket_Message = await prisma.ticket_Message.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Ticket_MessageWhereInput | No |
| orderBy | Ticket_MessageOrderByWithRelationInput[] | Ticket_MessageOrderByWithRelationInput | No |
| cursor | Ticket_MessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Ticket_MessageScalarFieldEnum | Ticket_MessageScalarFieldEnum[] | No |
Create one Ticket_Message
// Create one Ticket_Message
const Ticket_Message = await prisma.ticket_Message.create({
data: {
// ... data to create a Ticket_Message
}
})
| Name | Type | Required |
|---|---|---|
| data | Ticket_MessageCreateInput | Ticket_MessageUncheckedCreateInput | Yes |
Delete one Ticket_Message
// Delete one Ticket_Message
const Ticket_Message = await prisma.ticket_Message.delete({
where: {
// ... filter to delete one Ticket_Message
}
})
| Name | Type | Required |
|---|---|---|
| where | Ticket_MessageWhereUniqueInput | Yes |
Update one Ticket_Message
// Update one Ticket_Message
const ticket_Message = await prisma.ticket_Message.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Ticket_MessageUpdateInput | Ticket_MessageUncheckedUpdateInput | Yes |
| where | Ticket_MessageWhereUniqueInput | Yes |
Delete zero or more Ticket_Message
// Delete a few Ticket_Message
const { count } = await prisma.ticket_Message.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Ticket_MessageWhereInput | No |
Update zero or one Ticket_Message
const { count } = await prisma.ticket_Message.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Ticket_MessageUpdateManyMutationInput | Ticket_MessageUncheckedUpdateManyInput | Yes |
| where | Ticket_MessageWhereInput | No |
Create or update one Ticket_Message
// Update or create a Ticket_Message
const ticket_Message = await prisma.ticket_Message.upsert({
create: {
// ... data to create a Ticket_Message
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Ticket_Message we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Ticket_MessageWhereUniqueInput | Yes |
| create | Ticket_MessageCreateInput | Ticket_MessageUncheckedCreateInput | Yes |
| update | Ticket_MessageUpdateInput | Ticket_MessageUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| message | String |
|
Yes | - |
| name | String |
|
Yes | - |
| String |
|
Yes | - | |
| phone | String |
|
Yes | - |
| country_code | String |
|
Yes | - |
| country | String? |
|
No | - |
| status | ContactStatus? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
Find zero or one Contact_Request
// Get one Contact_Request
const contact_Request = await prisma.contact_Request.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Contact_RequestWhereUniqueInput | Yes |
Find first Contact_Request
// Get one Contact_Request
const contact_Request = await prisma.contact_Request.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Contact_RequestWhereInput | No |
| orderBy | Contact_RequestOrderByWithRelationInput[] | Contact_RequestOrderByWithRelationInput | No |
| cursor | Contact_RequestWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Contact_RequestScalarFieldEnum | Contact_RequestScalarFieldEnum[] | No |
Find zero or more Contact_Request
// Get all Contact_Request
const Contact_Request = await prisma.contact_Request.findMany()
// Get first 10 Contact_Request
const Contact_Request = await prisma.contact_Request.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Contact_RequestWhereInput | No |
| orderBy | Contact_RequestOrderByWithRelationInput[] | Contact_RequestOrderByWithRelationInput | No |
| cursor | Contact_RequestWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Contact_RequestScalarFieldEnum | Contact_RequestScalarFieldEnum[] | No |
Create one Contact_Request
// Create one Contact_Request
const Contact_Request = await prisma.contact_Request.create({
data: {
// ... data to create a Contact_Request
}
})
| Name | Type | Required |
|---|---|---|
| data | Contact_RequestCreateInput | Contact_RequestUncheckedCreateInput | Yes |
Delete one Contact_Request
// Delete one Contact_Request
const Contact_Request = await prisma.contact_Request.delete({
where: {
// ... filter to delete one Contact_Request
}
})
| Name | Type | Required |
|---|---|---|
| where | Contact_RequestWhereUniqueInput | Yes |
Update one Contact_Request
// Update one Contact_Request
const contact_Request = await prisma.contact_Request.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Contact_RequestUpdateInput | Contact_RequestUncheckedUpdateInput | Yes |
| where | Contact_RequestWhereUniqueInput | Yes |
Delete zero or more Contact_Request
// Delete a few Contact_Request
const { count } = await prisma.contact_Request.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Contact_RequestWhereInput | No |
Update zero or one Contact_Request
const { count } = await prisma.contact_Request.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Contact_RequestUpdateManyMutationInput | Contact_RequestUncheckedUpdateManyInput | Yes |
| where | Contact_RequestWhereInput | No |
Create or update one Contact_Request
// Update or create a Contact_Request
const contact_Request = await prisma.contact_Request.upsert({
create: {
// ... data to create a Contact_Request
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Contact_Request we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Contact_RequestWhereUniqueInput | Yes |
| create | Contact_RequestCreateInput | Contact_RequestUncheckedCreateInput | Yes |
| update | Contact_RequestUpdateInput | Contact_RequestUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | Int |
|
Yes | - |
| user_id | Int |
|
Yes | - |
| role | TeamMemberRole |
|
Yes | - |
| designation | String? |
|
No | - |
| badge | String? |
|
No | - |
| invited_by | Int? |
|
No | - |
| onboarded_at | DateTime? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| updated_at | DateTime |
|
Yes | - |
| user | User? |
|
No | - |
Find zero or one Team_Member
// Get one Team_Member
const team_Member = await prisma.team_Member.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Team_MemberWhereUniqueInput | Yes |
Find first Team_Member
// Get one Team_Member
const team_Member = await prisma.team_Member.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Team_MemberWhereInput | No |
| orderBy | Team_MemberOrderByWithRelationInput[] | Team_MemberOrderByWithRelationInput | No |
| cursor | Team_MemberWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Team_MemberScalarFieldEnum | Team_MemberScalarFieldEnum[] | No |
Find zero or more Team_Member
// Get all Team_Member
const Team_Member = await prisma.team_Member.findMany()
// Get first 10 Team_Member
const Team_Member = await prisma.team_Member.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | Team_MemberWhereInput | No |
| orderBy | Team_MemberOrderByWithRelationInput[] | Team_MemberOrderByWithRelationInput | No |
| cursor | Team_MemberWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | Team_MemberScalarFieldEnum | Team_MemberScalarFieldEnum[] | No |
Create one Team_Member
// Create one Team_Member
const Team_Member = await prisma.team_Member.create({
data: {
// ... data to create a Team_Member
}
})
| Name | Type | Required |
|---|---|---|
| data | Team_MemberCreateInput | Team_MemberUncheckedCreateInput | Yes |
Delete one Team_Member
// Delete one Team_Member
const Team_Member = await prisma.team_Member.delete({
where: {
// ... filter to delete one Team_Member
}
})
| Name | Type | Required |
|---|---|---|
| where | Team_MemberWhereUniqueInput | Yes |
Update one Team_Member
// Update one Team_Member
const team_Member = await prisma.team_Member.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Team_MemberUpdateInput | Team_MemberUncheckedUpdateInput | Yes |
| where | Team_MemberWhereUniqueInput | Yes |
Delete zero or more Team_Member
// Delete a few Team_Member
const { count } = await prisma.team_Member.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | Team_MemberWhereInput | No |
Update zero or one Team_Member
const { count } = await prisma.team_Member.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | Team_MemberUpdateManyMutationInput | Team_MemberUncheckedUpdateManyInput | Yes |
| where | Team_MemberWhereInput | No |
Create or update one Team_Member
// Update or create a Team_Member
const team_Member = await prisma.team_Member.upsert({
create: {
// ... data to create a Team_Member
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Team_Member we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | Team_MemberWhereUniqueInput | Yes |
| create | Team_MemberCreateInput | Team_MemberUncheckedCreateInput | Yes |
| update | Team_MemberUpdateInput | Team_MemberUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| first_name | SortOrder | No |
| last_name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | SortOrderInput | No |
| phone | SortOrder | SortOrderInput | No |
| profile_photo | SortOrder | SortOrderInput | No |
| role | SortOrder | No |
| status | SortOrder | SortOrderInput | No |
| is_verified | SortOrder | SortOrderInput | No |
| is_shopify_user | SortOrder | SortOrderInput | No |
| date_of_birth | SortOrder | SortOrderInput | No |
| country_code | SortOrder | SortOrderInput | No |
| country | SortOrder | SortOrderInput | No |
| address | SortOrder | SortOrderInput | No |
| website_url | SortOrder | SortOrderInput | No |
| social_handles | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| _count | UserCountOrderByAggregateInput | No |
| _avg | UserAvgOrderByAggregateInput | No |
| _max | UserMaxOrderByAggregateInput | No |
| _min | UserMinOrderByAggregateInput | No |
| _sum | UserSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ShopWhereInput | ShopWhereInput[] | No |
| OR | ShopWhereInput[] | No |
| NOT | ShopWhereInput | ShopWhereInput[] | No |
| id | IntFilter | Int | No |
| uuid | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| shopify_shop_id | IntFilter | Int | No |
| name | StringFilter | String | No |
| domain | StringFilter | String | No |
| status | EnumShopStatusFilter | ShopStatus | No |
| subscription_id | IntNullableFilter | Int | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| current_subscription | Shop_SubscriptionRelationFilter | Shop_SubscriptionWhereInput | Null | Yes |
| orders | OrderListRelationFilter | No |
| bookmarked_elements | BookmarkListRelationFilter | No |
| wishlisted_elements | WishlistListRelationFilter | No |
| recent_used_elements | Recent_Used_ElementListRelationFilter | No |
| affiliator_commissions | Affiliator_CommissionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| shopify_shop_id | SortOrder | No |
| name | SortOrder | No |
| domain | SortOrder | No |
| status | SortOrder | No |
| subscription_id | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| current_subscription | Shop_SubscriptionOrderByWithRelationInput | No |
| orders | OrderOrderByRelationAggregateInput | No |
| bookmarked_elements | BookmarkOrderByRelationAggregateInput | No |
| wishlisted_elements | WishlistOrderByRelationAggregateInput | No |
| recent_used_elements | Recent_Used_ElementOrderByRelationAggregateInput | No |
| affiliator_commissions | Affiliator_CommissionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| shopify_shop_id | SortOrder | No |
| name | SortOrder | No |
| domain | SortOrder | No |
| status | SortOrder | No |
| subscription_id | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| _count | ShopCountOrderByAggregateInput | No |
| _avg | ShopAvgOrderByAggregateInput | No |
| _max | ShopMaxOrderByAggregateInput | No |
| _min | ShopMinOrderByAggregateInput | No |
| _sum | ShopSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ShopScalarWhereWithAggregatesInput | ShopScalarWhereWithAggregatesInput[] | No |
| OR | ShopScalarWhereWithAggregatesInput[] | No |
| NOT | ShopScalarWhereWithAggregatesInput | ShopScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| uuid | StringWithAggregatesFilter | String | No |
| user_id | IntWithAggregatesFilter | Int | No |
| shopify_shop_id | IntWithAggregatesFilter | Int | No |
| name | StringWithAggregatesFilter | String | No |
| domain | StringWithAggregatesFilter | String | No |
| status | EnumShopStatusWithAggregatesFilter | ShopStatus | No |
| subscription_id | IntNullableWithAggregatesFilter | Int | Null | Yes |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| slug | String | No |
| file_name | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| featured_image | SortOrder | No |
| content | SortOrder | No |
| file_name | SortOrder | No |
| status | SortOrder | No |
| type | SortOrder | No |
| price | SortOrder | No |
| discount_type | SortOrder | SortOrderInput | No |
| discount_value | SortOrder | SortOrderInput | No |
| demo_url | SortOrder | SortOrderInput | No |
| video_url | SortOrder | SortOrderInput | No |
| version | SortOrder | SortOrderInput | No |
| user_id | SortOrder | No |
| wishlisted_count | SortOrder | SortOrderInput | No |
| bookmarked_count | SortOrder | SortOrderInput | No |
| added_theme_count | SortOrder | SortOrderInput | No |
| view_count | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| _count | ElementCountOrderByAggregateInput | No |
| _avg | ElementAvgOrderByAggregateInput | No |
| _max | ElementMaxOrderByAggregateInput | No |
| _min | ElementMinOrderByAggregateInput | No |
| _sum | ElementSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| featured_image | SortOrder | No |
| status | SortOrder | No |
| type | SortOrder | No |
| is_auto_price | SortOrder | SortOrderInput | No |
| price | SortOrder | No |
| discount_type | SortOrder | SortOrderInput | No |
| discount_value | SortOrder | SortOrderInput | No |
| demo_url | SortOrder | SortOrderInput | No |
| video_url | SortOrder | SortOrderInput | No |
| version | SortOrder | SortOrderInput | No |
| user_id | SortOrder | No |
| view_count | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| elements | Bundle_ElementOrderByRelationAggregateInput | No |
| images | Bundle_ImageOrderByRelationAggregateInput | No |
| categories | Bundle_CategoryOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| slug | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| featured_image | SortOrder | No |
| status | SortOrder | No |
| type | SortOrder | No |
| is_auto_price | SortOrder | SortOrderInput | No |
| price | SortOrder | No |
| discount_type | SortOrder | SortOrderInput | No |
| discount_value | SortOrder | SortOrderInput | No |
| demo_url | SortOrder | SortOrderInput | No |
| video_url | SortOrder | SortOrderInput | No |
| version | SortOrder | SortOrderInput | No |
| user_id | SortOrder | No |
| view_count | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| _count | BundleCountOrderByAggregateInput | No |
| _avg | BundleAvgOrderByAggregateInput | No |
| _max | BundleMaxOrderByAggregateInput | No |
| _min | BundleMinOrderByAggregateInput | No |
| _sum | BundleSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Bundle_ElementWhereInput | Bundle_ElementWhereInput[] | No |
| OR | Bundle_ElementWhereInput[] | No |
| NOT | Bundle_ElementWhereInput | Bundle_ElementWhereInput[] | No |
| id | IntFilter | Int | No |
| bundle_id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| element_type | EnumElementTypeFilter | ElementType | No |
| status | EnumGenericStatusFilter | GenericStatus | No |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| bundle | BundleRelationFilter | BundleWhereInput | Null | Yes |
| element | ElementRelationFilter | ElementWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| status | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| bundle | BundleOrderByWithRelationInput | No |
| element | ElementOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| status | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| _count | Bundle_ElementCountOrderByAggregateInput | No |
| _avg | Bundle_ElementAvgOrderByAggregateInput | No |
| _max | Bundle_ElementMaxOrderByAggregateInput | No |
| _min | Bundle_ElementMinOrderByAggregateInput | No |
| _sum | Bundle_ElementSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Bundle_ElementScalarWhereWithAggregatesInput | Bundle_ElementScalarWhereWithAggregatesInput[] | No |
| OR | Bundle_ElementScalarWhereWithAggregatesInput[] | No |
| NOT | Bundle_ElementScalarWhereWithAggregatesInput | Bundle_ElementScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| bundle_id | IntWithAggregatesFilter | Int | No |
| element_id | IntWithAggregatesFilter | Int | No |
| element_type | EnumElementTypeWithAggregatesFilter | ElementType | No |
| status | EnumGenericStatusWithAggregatesFilter | GenericStatus | No |
| user_id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| deleted_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| deleted_by | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_ImageWhereInput | Element_ImageWhereInput[] | No |
| OR | Element_ImageWhereInput[] | No |
| NOT | Element_ImageWhereInput | Element_ImageWhereInput[] | No |
| id | IntFilter | Int | No |
| url | StringFilter | String | No |
| element_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| element | ElementRelationFilter | ElementWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| element_id | SortOrder | No |
| created_at | SortOrder | No |
| element | ElementOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| element_id | SortOrder | No |
| created_at | SortOrder | No |
| _count | Element_ImageCountOrderByAggregateInput | No |
| _avg | Element_ImageAvgOrderByAggregateInput | No |
| _max | Element_ImageMaxOrderByAggregateInput | No |
| _min | Element_ImageMinOrderByAggregateInput | No |
| _sum | Element_ImageSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_ImageScalarWhereWithAggregatesInput | Element_ImageScalarWhereWithAggregatesInput[] | No |
| OR | Element_ImageScalarWhereWithAggregatesInput[] | No |
| NOT | Element_ImageScalarWhereWithAggregatesInput | Element_ImageScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| url | StringWithAggregatesFilter | String | No |
| element_id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Bundle_ImageWhereInput | Bundle_ImageWhereInput[] | No |
| OR | Bundle_ImageWhereInput[] | No |
| NOT | Bundle_ImageWhereInput | Bundle_ImageWhereInput[] | No |
| id | IntFilter | Int | No |
| url | StringFilter | String | No |
| bundle_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| bundle | BundleRelationFilter | BundleWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| bundle_id | SortOrder | No |
| created_at | SortOrder | No |
| bundle | BundleOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| bundle_id | SortOrder | No |
| created_at | SortOrder | No |
| _count | Bundle_ImageCountOrderByAggregateInput | No |
| _avg | Bundle_ImageAvgOrderByAggregateInput | No |
| _max | Bundle_ImageMaxOrderByAggregateInput | No |
| _min | Bundle_ImageMinOrderByAggregateInput | No |
| _sum | Bundle_ImageSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Bundle_ImageScalarWhereWithAggregatesInput | Bundle_ImageScalarWhereWithAggregatesInput[] | No |
| OR | Bundle_ImageScalarWhereWithAggregatesInput[] | No |
| NOT | Bundle_ImageScalarWhereWithAggregatesInput | Bundle_ImageScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| url | StringWithAggregatesFilter | String | No |
| bundle_id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_Best_UseWhereInput | Element_Best_UseWhereInput[] | No |
| OR | Element_Best_UseWhereInput[] | No |
| NOT | Element_Best_UseWhereInput | Element_Best_UseWhereInput[] | No |
| id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| title | StringFilter | String | No |
| description | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| element | ElementRelationFilter | ElementWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| element | ElementOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| _count | Element_Best_UseCountOrderByAggregateInput | No |
| _avg | Element_Best_UseAvgOrderByAggregateInput | No |
| _max | Element_Best_UseMaxOrderByAggregateInput | No |
| _min | Element_Best_UseMinOrderByAggregateInput | No |
| _sum | Element_Best_UseSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_Best_UseScalarWhereWithAggregatesInput | Element_Best_UseScalarWhereWithAggregatesInput[] | No |
| OR | Element_Best_UseScalarWhereWithAggregatesInput[] | No |
| NOT | Element_Best_UseScalarWhereWithAggregatesInput | Element_Best_UseScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| element_id | IntWithAggregatesFilter | Int | No |
| title | StringWithAggregatesFilter | String | No |
| description | StringWithAggregatesFilter | String | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryWhereInput | CategoryWhereInput[] | No |
| OR | CategoryWhereInput[] | No |
| NOT | CategoryWhereInput | CategoryWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| slug | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| type | EnumAssetTypeFilter | AssetType | No |
| status | EnumGenericStatusFilter | GenericStatus | No |
| image | StringNullableFilter | String | Null | Yes |
| banner | StringNullableFilter | String | Null | Yes |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| element_categories | Element_CategoryListRelationFilter | No |
| bundle_categories | Bundle_CategoryListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| status | SortOrder | No |
| image | SortOrder | SortOrderInput | No |
| banner | SortOrder | SortOrderInput | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| element_categories | Element_CategoryOrderByRelationAggregateInput | No |
| bundle_categories | Bundle_CategoryOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| slug | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| status | SortOrder | No |
| image | SortOrder | SortOrderInput | No |
| banner | SortOrder | SortOrderInput | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| _count | CategoryCountOrderByAggregateInput | No |
| _avg | CategoryAvgOrderByAggregateInput | No |
| _max | CategoryMaxOrderByAggregateInput | No |
| _min | CategoryMinOrderByAggregateInput | No |
| _sum | CategorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] | No |
| OR | CategoryScalarWhereWithAggregatesInput[] | No |
| NOT | CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| name | StringWithAggregatesFilter | String | No |
| slug | StringWithAggregatesFilter | String | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| type | EnumAssetTypeWithAggregatesFilter | AssetType | No |
| status | EnumGenericStatusWithAggregatesFilter | GenericStatus | No |
| image | StringNullableWithAggregatesFilter | String | Null | Yes |
| banner | StringNullableWithAggregatesFilter | String | Null | Yes |
| user_id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| deleted_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| deleted_by | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_CategoryWhereInput | Element_CategoryWhereInput[] | No |
| OR | Element_CategoryWhereInput[] | No |
| NOT | Element_CategoryWhereInput | Element_CategoryWhereInput[] | No |
| id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| category_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| element | ElementRelationFilter | ElementWhereInput | Null | Yes |
| category | CategoryRelationFilter | CategoryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| element | ElementOrderByWithRelationInput | No |
| category | CategoryOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| _count | Element_CategoryCountOrderByAggregateInput | No |
| _avg | Element_CategoryAvgOrderByAggregateInput | No |
| _max | Element_CategoryMaxOrderByAggregateInput | No |
| _min | Element_CategoryMinOrderByAggregateInput | No |
| _sum | Element_CategorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_CategoryScalarWhereWithAggregatesInput | Element_CategoryScalarWhereWithAggregatesInput[] | No |
| OR | Element_CategoryScalarWhereWithAggregatesInput[] | No |
| NOT | Element_CategoryScalarWhereWithAggregatesInput | Element_CategoryScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| element_id | IntWithAggregatesFilter | Int | No |
| category_id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Bundle_CategoryWhereInput | Bundle_CategoryWhereInput[] | No |
| OR | Bundle_CategoryWhereInput[] | No |
| NOT | Bundle_CategoryWhereInput | Bundle_CategoryWhereInput[] | No |
| id | IntFilter | Int | No |
| bundle_id | IntFilter | Int | No |
| category_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| bundle | BundleRelationFilter | BundleWhereInput | Null | Yes |
| category | CategoryRelationFilter | CategoryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| bundle | BundleOrderByWithRelationInput | No |
| category | CategoryOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| _count | Bundle_CategoryCountOrderByAggregateInput | No |
| _avg | Bundle_CategoryAvgOrderByAggregateInput | No |
| _max | Bundle_CategoryMaxOrderByAggregateInput | No |
| _min | Bundle_CategoryMinOrderByAggregateInput | No |
| _sum | Bundle_CategorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Bundle_CategoryScalarWhereWithAggregatesInput | Bundle_CategoryScalarWhereWithAggregatesInput[] | No |
| OR | Bundle_CategoryScalarWhereWithAggregatesInput[] | No |
| NOT | Bundle_CategoryScalarWhereWithAggregatesInput | Bundle_CategoryScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| bundle_id | IntWithAggregatesFilter | Int | No |
| category_id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TagWhereInput | TagWhereInput[] | No |
| OR | TagWhereInput[] | No |
| NOT | TagWhereInput | TagWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| slug | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| description | StringNullableFilter | String | Null | Yes |
| image | StringNullableFilter | String | Null | Yes |
| banner | StringNullableFilter | String | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| elements | Element_TagListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| user_id | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| image | SortOrder | SortOrderInput | No |
| banner | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| elements | Element_TagOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| slug | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| user_id | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| image | SortOrder | SortOrderInput | No |
| banner | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| _count | TagCountOrderByAggregateInput | No |
| _avg | TagAvgOrderByAggregateInput | No |
| _max | TagMaxOrderByAggregateInput | No |
| _min | TagMinOrderByAggregateInput | No |
| _sum | TagSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TagScalarWhereWithAggregatesInput | TagScalarWhereWithAggregatesInput[] | No |
| OR | TagScalarWhereWithAggregatesInput[] | No |
| NOT | TagScalarWhereWithAggregatesInput | TagScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| name | StringWithAggregatesFilter | String | No |
| slug | StringWithAggregatesFilter | String | No |
| user_id | IntWithAggregatesFilter | Int | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| image | StringNullableWithAggregatesFilter | String | Null | Yes |
| banner | StringNullableWithAggregatesFilter | String | Null | Yes |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| deleted_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| deleted_by | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_TagWhereInput | Element_TagWhereInput[] | No |
| OR | Element_TagWhereInput[] | No |
| NOT | Element_TagWhereInput | Element_TagWhereInput[] | No |
| id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| tag_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| tag | TagRelationFilter | TagWhereInput | Null | Yes |
| element | ElementRelationFilter | ElementWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| tag_id | SortOrder | No |
| created_at | SortOrder | No |
| tag | TagOrderByWithRelationInput | No |
| element | ElementOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| tag_id | SortOrder | No |
| created_at | SortOrder | No |
| _count | Element_TagCountOrderByAggregateInput | No |
| _avg | Element_TagAvgOrderByAggregateInput | No |
| _max | Element_TagMaxOrderByAggregateInput | No |
| _min | Element_TagMinOrderByAggregateInput | No |
| _sum | Element_TagSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_TagScalarWhereWithAggregatesInput | Element_TagScalarWhereWithAggregatesInput[] | No |
| OR | Element_TagScalarWhereWithAggregatesInput[] | No |
| NOT | Element_TagScalarWhereWithAggregatesInput | Element_TagScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| element_id | IntWithAggregatesFilter | Int | No |
| tag_id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionWhereInput | SessionWhereInput[] | No |
| OR | SessionWhereInput[] | No |
| NOT | SessionWhereInput | SessionWhereInput[] | No |
| id | IntFilter | Int | No |
| shop | StringFilter | String | No |
| state | StringNullableFilter | String | Null | Yes |
| isOnline | BoolFilter | Boolean | No |
| scope | StringFilter | String | No |
| userId | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop | SortOrder | No |
| state | SortOrder | SortOrderInput | No |
| isOnline | SortOrder | No |
| scope | SortOrder | No |
| userId | SortOrder | SortOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop | SortOrder | No |
| state | SortOrder | SortOrderInput | No |
| isOnline | SortOrder | No |
| scope | SortOrder | No |
| userId | SortOrder | SortOrderInput | No |
| _count | SessionCountOrderByAggregateInput | No |
| _avg | SessionAvgOrderByAggregateInput | No |
| _max | SessionMaxOrderByAggregateInput | No |
| _min | SessionMinOrderByAggregateInput | No |
| _sum | SessionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| OR | SessionScalarWhereWithAggregatesInput[] | No |
| NOT | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| shop | StringWithAggregatesFilter | String | No |
| state | StringNullableWithAggregatesFilter | String | Null | Yes |
| isOnline | BoolWithAggregatesFilter | Boolean | No |
| scope | StringWithAggregatesFilter | String | No |
| userId | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| shop_id | SortOrder | No |
| asset_type | SortOrder | No |
| status | SortOrder | No |
| sub_total | SortOrder | No |
| discounted_amout | SortOrder | SortOrderInput | No |
| coupon_id | SortOrder | SortOrderInput | No |
| coupon_code | SortOrder | SortOrderInput | No |
| coupon_discount_type | SortOrder | SortOrderInput | No |
| coupon_discount_value | SortOrder | SortOrderInput | No |
| grand_total | SortOrder | No |
| affiliated_by | SortOrder | SortOrderInput | No |
| affiliated_commission | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| shop | ShopOrderByWithRelationInput | No |
| coupon | CouponOrderByWithRelationInput | No |
| order_items | Order_ItemOrderByRelationAggregateInput | No |
| affiliator_commissions | Affiliator_CommissionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| shop_id | SortOrder | No |
| asset_type | SortOrder | No |
| status | SortOrder | No |
| sub_total | SortOrder | No |
| discounted_amout | SortOrder | SortOrderInput | No |
| coupon_id | SortOrder | SortOrderInput | No |
| coupon_code | SortOrder | SortOrderInput | No |
| coupon_discount_type | SortOrder | SortOrderInput | No |
| coupon_discount_value | SortOrder | SortOrderInput | No |
| grand_total | SortOrder | No |
| affiliated_by | SortOrder | SortOrderInput | No |
| affiliated_commission | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| _count | OrderCountOrderByAggregateInput | No |
| _avg | OrderAvgOrderByAggregateInput | No |
| _max | OrderMaxOrderByAggregateInput | No |
| _min | OrderMinOrderByAggregateInput | No |
| _sum | OrderSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Order_ItemWhereInput | Order_ItemWhereInput[] | No |
| OR | Order_ItemWhereInput[] | No |
| NOT | Order_ItemWhereInput | Order_ItemWhereInput[] | No |
| id | IntFilter | Int | No |
| order_id | IntFilter | Int | No |
| asset_id | IntFilter | Int | No |
| asset_type | EnumAssetTypeFilter | AssetType | No |
| price | DecimalFilter | Decimal | No |
| discounted_price | DecimalNullableFilter | Decimal | Null | Yes |
| discount_type | EnumDiscountTypeNullableFilter | DiscountType | Null | Yes |
| discount_value | DecimalNullableFilter | Decimal | Null | Yes |
| order_bundle_id | IntNullableFilter | Int | Null | Yes |
| order | OrderRelationFilter | OrderWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| order_id | SortOrder | No |
| asset_id | SortOrder | No |
| asset_type | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | SortOrderInput | No |
| discount_type | SortOrder | SortOrderInput | No |
| discount_value | SortOrder | SortOrderInput | No |
| order_bundle_id | SortOrder | SortOrderInput | No |
| order | OrderOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| order_id | SortOrder | No |
| asset_id | SortOrder | No |
| asset_type | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | SortOrderInput | No |
| discount_type | SortOrder | SortOrderInput | No |
| discount_value | SortOrder | SortOrderInput | No |
| order_bundle_id | SortOrder | SortOrderInput | No |
| _count | Order_ItemCountOrderByAggregateInput | No |
| _avg | Order_ItemAvgOrderByAggregateInput | No |
| _max | Order_ItemMaxOrderByAggregateInput | No |
| _min | Order_ItemMinOrderByAggregateInput | No |
| _sum | Order_ItemSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Order_ItemScalarWhereWithAggregatesInput | Order_ItemScalarWhereWithAggregatesInput[] | No |
| OR | Order_ItemScalarWhereWithAggregatesInput[] | No |
| NOT | Order_ItemScalarWhereWithAggregatesInput | Order_ItemScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| order_id | IntWithAggregatesFilter | Int | No |
| asset_id | IntWithAggregatesFilter | Int | No |
| asset_type | EnumAssetTypeWithAggregatesFilter | AssetType | No |
| price | DecimalWithAggregatesFilter | Decimal | No |
| discounted_price | DecimalNullableWithAggregatesFilter | Decimal | Null | Yes |
| discount_type | EnumDiscountTypeNullableWithAggregatesFilter | DiscountType | Null | Yes |
| discount_value | DecimalNullableWithAggregatesFilter | Decimal | Null | Yes |
| order_bundle_id | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | CouponWhereInput | CouponWhereInput[] | No |
| OR | CouponWhereInput[] | No |
| NOT | CouponWhereInput | CouponWhereInput[] | No |
| id | IntFilter | Int | No |
| code | StringFilter | String | No |
| status | EnumCouponStatusFilter | CouponStatus | No |
| expired_at | DateTimeNullableFilter | DateTime | Null | Yes |
| max_total_applied | IntNullableFilter | Int | Null | Yes |
| max_applied_by_shop | IntNullableFilter | Int | Null | Yes |
| discount_type | EnumDiscountTypeNullableFilter | DiscountType | Null | Yes |
| discount_value | DecimalNullableFilter | Decimal | Null | Yes |
| min_order_amount | DecimalNullableFilter | Decimal | Null | Yes |
| max_discount_limit | DecimalNullableFilter | Decimal | Null | Yes |
| is_apply_on_asset_discount | BoolNullableFilter | Boolean | Null | Yes |
| affiliated_by | IntNullableFilter | Int | Null | Yes |
| commission_type | EnumDiscountTypeNullableFilter | DiscountType | Null | Yes |
| commission_value | DecimalNullableFilter | Decimal | Null | Yes |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| affiliator | AffiliatorRelationFilter | AffiliatorWhereInput | Null | Yes |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| orders | OrderListRelationFilter | No |
| affiliator_commissions | Affiliator_CommissionListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| status | SortOrder | No |
| expired_at | SortOrder | SortOrderInput | No |
| max_total_applied | SortOrder | SortOrderInput | No |
| max_applied_by_shop | SortOrder | SortOrderInput | No |
| discount_type | SortOrder | SortOrderInput | No |
| discount_value | SortOrder | SortOrderInput | No |
| min_order_amount | SortOrder | SortOrderInput | No |
| max_discount_limit | SortOrder | SortOrderInput | No |
| is_apply_on_asset_discount | SortOrder | SortOrderInput | No |
| affiliated_by | SortOrder | SortOrderInput | No |
| commission_type | SortOrder | SortOrderInput | No |
| commission_value | SortOrder | SortOrderInput | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| affiliator | AffiliatorOrderByWithRelationInput | No |
| user | UserOrderByWithRelationInput | No |
| orders | OrderOrderByRelationAggregateInput | No |
| affiliator_commissions | Affiliator_CommissionOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| code | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| status | SortOrder | No |
| expired_at | SortOrder | SortOrderInput | No |
| max_total_applied | SortOrder | SortOrderInput | No |
| max_applied_by_shop | SortOrder | SortOrderInput | No |
| discount_type | SortOrder | SortOrderInput | No |
| discount_value | SortOrder | SortOrderInput | No |
| min_order_amount | SortOrder | SortOrderInput | No |
| max_discount_limit | SortOrder | SortOrderInput | No |
| is_apply_on_asset_discount | SortOrder | SortOrderInput | No |
| affiliated_by | SortOrder | SortOrderInput | No |
| commission_type | SortOrder | SortOrderInput | No |
| commission_value | SortOrder | SortOrderInput | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| _count | CouponCountOrderByAggregateInput | No |
| _avg | CouponAvgOrderByAggregateInput | No |
| _max | CouponMaxOrderByAggregateInput | No |
| _min | CouponMinOrderByAggregateInput | No |
| _sum | CouponSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| invited_by | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| type_other | SortOrder | SortOrderInput | No |
| status | SortOrder | No |
| total_earned | SortOrder | SortOrderInput | No |
| total_paid | SortOrder | SortOrderInput | No |
| current_coupon_id | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestOrderByRelationAggregateInput | No |
| affiliator_commissions | Affiliator_CommissionOrderByRelationAggregateInput | No |
| coupons | CouponOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| invited_by | SortOrder | SortOrderInput | No |
| type | SortOrder | No |
| type_other | SortOrder | SortOrderInput | No |
| status | SortOrder | No |
| total_earned | SortOrder | SortOrderInput | No |
| total_paid | SortOrder | SortOrderInput | No |
| current_coupon_id | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| _count | AffiliatorCountOrderByAggregateInput | No |
| _avg | AffiliatorAvgOrderByAggregateInput | No |
| _max | AffiliatorMaxOrderByAggregateInput | No |
| _min | AffiliatorMinOrderByAggregateInput | No |
| _sum | AffiliatorSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| affiliator_id | SortOrder | No |
| user_id | SortOrder | No |
| order_id | SortOrder | SortOrderInput | No |
| shop_id | SortOrder | SortOrderInput | No |
| coupon_id | SortOrder | SortOrderInput | No |
| coupon_code | SortOrder | SortOrderInput | No |
| order_amout | SortOrder | SortOrderInput | No |
| coupon_discount_type | SortOrder | SortOrderInput | No |
| coupon_discount_value | SortOrder | SortOrderInput | No |
| commission_type | SortOrder | No |
| commission_value | SortOrder | No |
| amount | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| affiliator | AffiliatorOrderByWithRelationInput | No |
| user | UserOrderByWithRelationInput | No |
| order | OrderOrderByWithRelationInput | No |
| shop | ShopOrderByWithRelationInput | No |
| coupon | CouponOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| affiliator_id | SortOrder | No |
| user_id | SortOrder | No |
| order_id | SortOrder | SortOrderInput | No |
| shop_id | SortOrder | SortOrderInput | No |
| coupon_id | SortOrder | SortOrderInput | No |
| coupon_code | SortOrder | SortOrderInput | No |
| order_amout | SortOrder | SortOrderInput | No |
| coupon_discount_type | SortOrder | SortOrderInput | No |
| coupon_discount_value | SortOrder | SortOrderInput | No |
| commission_type | SortOrder | No |
| commission_value | SortOrder | No |
| amount | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| _count | Affiliator_CommissionCountOrderByAggregateInput | No |
| _avg | Affiliator_CommissionAvgOrderByAggregateInput | No |
| _max | Affiliator_CommissionMaxOrderByAggregateInput | No |
| _min | Affiliator_CommissionMinOrderByAggregateInput | No |
| _sum | Affiliator_CommissionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| affiliator_id | SortOrder | No |
| status | SortOrder | No |
| amount | SortOrder | No |
| payment_method_id | SortOrder | No |
| payment_method | SortOrder | No |
| payment_method_details | SortOrder | No |
| assignee | SortOrder | SortOrderInput | No |
| note | SortOrder | SortOrderInput | No |
| reject_reason | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| affiliator | AffiliatorOrderByWithRelationInput | No |
| payment_method_detail | User_Pament_MethodOrderByWithRelationInput | No |
| assigned_user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| affiliator_id | SortOrder | No |
| status | SortOrder | No |
| amount | SortOrder | No |
| payment_method_id | SortOrder | No |
| payment_method | SortOrder | No |
| payment_method_details | SortOrder | No |
| assignee | SortOrder | SortOrderInput | No |
| note | SortOrder | SortOrderInput | No |
| reject_reason | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| _count | Affiliator_Withdraw_RequestCountOrderByAggregateInput | No |
| _avg | Affiliator_Withdraw_RequestAvgOrderByAggregateInput | No |
| _max | Affiliator_Withdraw_RequestMaxOrderByAggregateInput | No |
| _min | Affiliator_Withdraw_RequestMinOrderByAggregateInput | No |
| _sum | Affiliator_Withdraw_RequestSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | User_Pament_MethodWhereInput | User_Pament_MethodWhereInput[] | No |
| OR | User_Pament_MethodWhereInput[] | No |
| NOT | User_Pament_MethodWhereInput | User_Pament_MethodWhereInput[] | No |
| id | IntFilter | Int | No |
| user_id | IntFilter | Int | No |
| method | EnumPaymentMethodFilter | PaymentMethod | No |
| details | JsonFilter | No |
| is_default | BoolFilter | Boolean | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| method | SortOrder | No |
| details | SortOrder | No |
| is_default | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| method | SortOrder | No |
| details | SortOrder | No |
| is_default | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| _count | User_Pament_MethodCountOrderByAggregateInput | No |
| _avg | User_Pament_MethodAvgOrderByAggregateInput | No |
| _max | User_Pament_MethodMaxOrderByAggregateInput | No |
| _min | User_Pament_MethodMinOrderByAggregateInput | No |
| _sum | User_Pament_MethodSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | User_Pament_MethodScalarWhereWithAggregatesInput | User_Pament_MethodScalarWhereWithAggregatesInput[] | No |
| OR | User_Pament_MethodScalarWhereWithAggregatesInput[] | No |
| NOT | User_Pament_MethodScalarWhereWithAggregatesInput | User_Pament_MethodScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| user_id | IntWithAggregatesFilter | Int | No |
| method | EnumPaymentMethodWithAggregatesFilter | PaymentMethod | No |
| details | JsonWithAggregatesFilter | No |
| is_default | BoolWithAggregatesFilter | Boolean | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| deleted_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | Pricing_PlanWhereInput | Pricing_PlanWhereInput[] | No |
| OR | Pricing_PlanWhereInput[] | No |
| NOT | Pricing_PlanWhereInput | Pricing_PlanWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| tagline | StringFilter | String | No |
| description | StringFilter | String | No |
| type | EnumPricingPlanTypeFilter | PricingPlanType | No |
| is_recommended | BoolFilter | Boolean | No |
| is_popular | BoolFilter | Boolean | No |
| price | DecimalFilter | Decimal | No |
| discounted_price | DecimalNullableFilter | Decimal | Null | Yes |
| yearly_discounted_price | DecimalNullableFilter | Decimal | Null | Yes |
| trial_period | IntNullableFilter | Int | Null | Yes |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| subscriptions | Shop_SubscriptionListRelationFilter | No |
| pricing_plan_features | Pricing_Plan_FeatureListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| tagline | SortOrder | No |
| description | SortOrder | No |
| type | SortOrder | No |
| is_recommended | SortOrder | No |
| is_popular | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | SortOrderInput | No |
| yearly_discounted_price | SortOrder | SortOrderInput | No |
| trial_period | SortOrder | SortOrderInput | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| subscriptions | Shop_SubscriptionOrderByRelationAggregateInput | No |
| pricing_plan_features | Pricing_Plan_FeatureOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| type | PricingPlanType | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| tagline | SortOrder | No |
| description | SortOrder | No |
| type | SortOrder | No |
| is_recommended | SortOrder | No |
| is_popular | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | SortOrderInput | No |
| yearly_discounted_price | SortOrder | SortOrderInput | No |
| trial_period | SortOrder | SortOrderInput | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| _count | Pricing_PlanCountOrderByAggregateInput | No |
| _avg | Pricing_PlanAvgOrderByAggregateInput | No |
| _max | Pricing_PlanMaxOrderByAggregateInput | No |
| _min | Pricing_PlanMinOrderByAggregateInput | No |
| _sum | Pricing_PlanSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Pricing_Plan_FeatureWhereInput | Pricing_Plan_FeatureWhereInput[] | No |
| OR | Pricing_Plan_FeatureWhereInput[] | No |
| NOT | Pricing_Plan_FeatureWhereInput | Pricing_Plan_FeatureWhereInput[] | No |
| id | IntFilter | Int | No |
| plan_id | IntFilter | Int | No |
| title | StringFilter | String | No |
| type | StringNullableFilter | String | Null | Yes |
| description | StringNullableFilter | String | Null | Yes |
| pricing_plan | Pricing_PlanRelationFilter | Pricing_PlanWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| plan_id | SortOrder | No |
| title | SortOrder | No |
| type | SortOrder | SortOrderInput | No |
| description | SortOrder | SortOrderInput | No |
| pricing_plan | Pricing_PlanOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| plan_id | SortOrder | No |
| title | SortOrder | No |
| type | SortOrder | SortOrderInput | No |
| description | SortOrder | SortOrderInput | No |
| _count | Pricing_Plan_FeatureCountOrderByAggregateInput | No |
| _avg | Pricing_Plan_FeatureAvgOrderByAggregateInput | No |
| _max | Pricing_Plan_FeatureMaxOrderByAggregateInput | No |
| _min | Pricing_Plan_FeatureMinOrderByAggregateInput | No |
| _sum | Pricing_Plan_FeatureSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Pricing_Plan_FeatureScalarWhereWithAggregatesInput | Pricing_Plan_FeatureScalarWhereWithAggregatesInput[] | No |
| OR | Pricing_Plan_FeatureScalarWhereWithAggregatesInput[] | No |
| NOT | Pricing_Plan_FeatureScalarWhereWithAggregatesInput | Pricing_Plan_FeatureScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| plan_id | IntWithAggregatesFilter | Int | No |
| title | StringWithAggregatesFilter | String | No |
| type | StringNullableWithAggregatesFilter | String | Null | Yes |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | Shop_SubscriptionWhereInput | Shop_SubscriptionWhereInput[] | No |
| OR | Shop_SubscriptionWhereInput[] | No |
| NOT | Shop_SubscriptionWhereInput | Shop_SubscriptionWhereInput[] | No |
| id | IntFilter | Int | No |
| uuid | StringFilter | String | No |
| shop_id | IntFilter | Int | No |
| plan_id | IntFilter | Int | No |
| plan_type | EnumPricingPlanTypeFilter | PricingPlanType | No |
| status | EnumSubscriptionStatusFilter | SubscriptionStatus | No |
| created_at | DateTimeFilter | DateTime | No |
| ended_at | DateTimeNullableFilter | DateTime | Null | Yes |
| ended_type | EnumSubscriptionEndedTypeNullableFilter | SubscriptionEndedType | Null | Yes |
| updated_at | DateTimeFilter | DateTime | No |
| amount | DecimalFilter | Decimal | No |
| payment_method | EnumPaymentMethodFilter | PaymentMethod | No |
| plan | Pricing_PlanRelationFilter | Pricing_PlanWhereInput | Null | Yes |
| shops | ShopListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| shop_id | SortOrder | No |
| plan_id | SortOrder | No |
| plan_type | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| ended_at | SortOrder | SortOrderInput | No |
| ended_type | SortOrder | SortOrderInput | No |
| updated_at | SortOrder | No |
| amount | SortOrder | No |
| payment_method | SortOrder | No |
| plan | Pricing_PlanOrderByWithRelationInput | No |
| shops | ShopOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| shop_id | SortOrder | No |
| plan_id | SortOrder | No |
| plan_type | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| ended_at | SortOrder | SortOrderInput | No |
| ended_type | SortOrder | SortOrderInput | No |
| updated_at | SortOrder | No |
| amount | SortOrder | No |
| payment_method | SortOrder | No |
| _count | Shop_SubscriptionCountOrderByAggregateInput | No |
| _avg | Shop_SubscriptionAvgOrderByAggregateInput | No |
| _max | Shop_SubscriptionMaxOrderByAggregateInput | No |
| _min | Shop_SubscriptionMinOrderByAggregateInput | No |
| _sum | Shop_SubscriptionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Shop_SubscriptionScalarWhereWithAggregatesInput | Shop_SubscriptionScalarWhereWithAggregatesInput[] | No |
| OR | Shop_SubscriptionScalarWhereWithAggregatesInput[] | No |
| NOT | Shop_SubscriptionScalarWhereWithAggregatesInput | Shop_SubscriptionScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| uuid | StringWithAggregatesFilter | String | No |
| shop_id | IntWithAggregatesFilter | Int | No |
| plan_id | IntWithAggregatesFilter | Int | No |
| plan_type | EnumPricingPlanTypeWithAggregatesFilter | PricingPlanType | No |
| status | EnumSubscriptionStatusWithAggregatesFilter | SubscriptionStatus | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| ended_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| ended_type | EnumSubscriptionEndedTypeNullableWithAggregatesFilter | SubscriptionEndedType | Null | Yes |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| amount | DecimalWithAggregatesFilter | Decimal | No |
| payment_method | EnumPaymentMethodWithAggregatesFilter | PaymentMethod | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FaqWhereInput | FaqWhereInput[] | No |
| OR | FaqWhereInput[] | No |
| NOT | FaqWhereInput | FaqWhereInput[] | No |
| id | IntFilter | Int | No |
| user_id | IntFilter | Int | No |
| question | StringFilter | String | No |
| answer | StringFilter | String | No |
| status | EnumFaqStatusFilter | FaqStatus | No |
| category_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| category | Faq_CategoryRelationFilter | Faq_CategoryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| question | SortOrder | No |
| answer | SortOrder | No |
| status | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| category | Faq_CategoryOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| question | SortOrder | No |
| answer | SortOrder | No |
| status | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| _count | FaqCountOrderByAggregateInput | No |
| _avg | FaqAvgOrderByAggregateInput | No |
| _max | FaqMaxOrderByAggregateInput | No |
| _min | FaqMinOrderByAggregateInput | No |
| _sum | FaqSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FaqScalarWhereWithAggregatesInput | FaqScalarWhereWithAggregatesInput[] | No |
| OR | FaqScalarWhereWithAggregatesInput[] | No |
| NOT | FaqScalarWhereWithAggregatesInput | FaqScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| user_id | IntWithAggregatesFilter | Int | No |
| question | StringWithAggregatesFilter | String | No |
| answer | StringWithAggregatesFilter | String | No |
| status | EnumFaqStatusWithAggregatesFilter | FaqStatus | No |
| category_id | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| deleted_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| deleted_by | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | Faq_CategoryWhereInput | Faq_CategoryWhereInput[] | No |
| OR | Faq_CategoryWhereInput[] | No |
| NOT | Faq_CategoryWhereInput | Faq_CategoryWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| description | StringNullableFilter | String | Null | Yes |
| banner | StringNullableFilter | String | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| faqs | FaqListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| user_id | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| banner | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| faqs | FaqOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| user_id | SortOrder | No |
| description | SortOrder | SortOrderInput | No |
| banner | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | SortOrderInput | No |
| deleted_by | SortOrder | SortOrderInput | No |
| _count | Faq_CategoryCountOrderByAggregateInput | No |
| _avg | Faq_CategoryAvgOrderByAggregateInput | No |
| _max | Faq_CategoryMaxOrderByAggregateInput | No |
| _min | Faq_CategoryMinOrderByAggregateInput | No |
| _sum | Faq_CategorySumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Faq_CategoryScalarWhereWithAggregatesInput | Faq_CategoryScalarWhereWithAggregatesInput[] | No |
| OR | Faq_CategoryScalarWhereWithAggregatesInput[] | No |
| NOT | Faq_CategoryScalarWhereWithAggregatesInput | Faq_CategoryScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| name | StringWithAggregatesFilter | String | No |
| user_id | IntWithAggregatesFilter | Int | No |
| description | StringNullableWithAggregatesFilter | String | Null | Yes |
| banner | StringNullableWithAggregatesFilter | String | Null | Yes |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| deleted_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| deleted_by | IntNullableWithAggregatesFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | AttachmentWhereInput | AttachmentWhereInput[] | No |
| OR | AttachmentWhereInput[] | No |
| NOT | AttachmentWhereInput | AttachmentWhereInput[] | No |
| id | IntFilter | Int | No |
| uuid | StringFilter | String | No |
| url | StringFilter | String | No |
| type | EnumAttachmentTypeFilter | AttachmentType | No |
| ref_id | IntFilter | Int | No |
| ref_type | EnumAttachmentRefTypeFilter | AttachmentRefType | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| url | SortOrder | No |
| type | SortOrder | No |
| ref_id | SortOrder | No |
| ref_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| url | SortOrder | No |
| type | SortOrder | No |
| ref_id | SortOrder | No |
| ref_type | SortOrder | No |
| created_at | SortOrder | No |
| _count | AttachmentCountOrderByAggregateInput | No |
| _avg | AttachmentAvgOrderByAggregateInput | No |
| _max | AttachmentMaxOrderByAggregateInput | No |
| _min | AttachmentMinOrderByAggregateInput | No |
| _sum | AttachmentSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AttachmentScalarWhereWithAggregatesInput | AttachmentScalarWhereWithAggregatesInput[] | No |
| OR | AttachmentScalarWhereWithAggregatesInput[] | No |
| NOT | AttachmentScalarWhereWithAggregatesInput | AttachmentScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| uuid | StringWithAggregatesFilter | String | No |
| url | StringWithAggregatesFilter | String | No |
| type | EnumAttachmentTypeWithAggregatesFilter | AttachmentType | No |
| ref_id | IntWithAggregatesFilter | Int | No |
| ref_type | EnumAttachmentRefTypeWithAggregatesFilter | AttachmentRefType | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | WishlistWhereInput | WishlistWhereInput[] | No |
| OR | WishlistWhereInput[] | No |
| NOT | WishlistWhereInput | WishlistWhereInput[] | No |
| id | IntFilter | Int | No |
| shop_id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| element_type | EnumElementTypeFilter | ElementType | No |
| created_at | DateTimeFilter | DateTime | No |
| shop | ShopRelationFilter | ShopWhereInput | Null | Yes |
| element | ElementRelationFilter | ElementWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| shop | ShopOrderByWithRelationInput | No |
| element | ElementOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| _count | WishlistCountOrderByAggregateInput | No |
| _avg | WishlistAvgOrderByAggregateInput | No |
| _max | WishlistMaxOrderByAggregateInput | No |
| _min | WishlistMinOrderByAggregateInput | No |
| _sum | WishlistSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | WishlistScalarWhereWithAggregatesInput | WishlistScalarWhereWithAggregatesInput[] | No |
| OR | WishlistScalarWhereWithAggregatesInput[] | No |
| NOT | WishlistScalarWhereWithAggregatesInput | WishlistScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| shop_id | IntWithAggregatesFilter | Int | No |
| element_id | IntWithAggregatesFilter | Int | No |
| element_type | EnumElementTypeWithAggregatesFilter | ElementType | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookmarkWhereInput | BookmarkWhereInput[] | No |
| OR | BookmarkWhereInput[] | No |
| NOT | BookmarkWhereInput | BookmarkWhereInput[] | No |
| id | IntFilter | Int | No |
| shop_id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| element_type | EnumElementTypeFilter | ElementType | No |
| created_at | DateTimeFilter | DateTime | No |
| shop | ShopRelationFilter | ShopWhereInput | Null | Yes |
| element | ElementRelationFilter | ElementWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| shop | ShopOrderByWithRelationInput | No |
| element | ElementOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| _count | BookmarkCountOrderByAggregateInput | No |
| _avg | BookmarkAvgOrderByAggregateInput | No |
| _max | BookmarkMaxOrderByAggregateInput | No |
| _min | BookmarkMinOrderByAggregateInput | No |
| _sum | BookmarkSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookmarkScalarWhereWithAggregatesInput | BookmarkScalarWhereWithAggregatesInput[] | No |
| OR | BookmarkScalarWhereWithAggregatesInput[] | No |
| NOT | BookmarkScalarWhereWithAggregatesInput | BookmarkScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| shop_id | IntWithAggregatesFilter | Int | No |
| element_id | IntWithAggregatesFilter | Int | No |
| element_type | EnumElementTypeWithAggregatesFilter | ElementType | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Recent_Used_ElementWhereInput | Recent_Used_ElementWhereInput[] | No |
| OR | Recent_Used_ElementWhereInput[] | No |
| NOT | Recent_Used_ElementWhereInput | Recent_Used_ElementWhereInput[] | No |
| id | IntFilter | Int | No |
| shop_id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| element_type | EnumElementTypeFilter | ElementType | No |
| created_at | DateTimeFilter | DateTime | No |
| shop | ShopRelationFilter | ShopWhereInput | Null | Yes |
| element | ElementRelationFilter | ElementWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| shop | ShopOrderByWithRelationInput | No |
| element | ElementOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| _count | Recent_Used_ElementCountOrderByAggregateInput | No |
| _avg | Recent_Used_ElementAvgOrderByAggregateInput | No |
| _max | Recent_Used_ElementMaxOrderByAggregateInput | No |
| _min | Recent_Used_ElementMinOrderByAggregateInput | No |
| _sum | Recent_Used_ElementSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Recent_Used_ElementScalarWhereWithAggregatesInput | Recent_Used_ElementScalarWhereWithAggregatesInput[] | No |
| OR | Recent_Used_ElementScalarWhereWithAggregatesInput[] | No |
| NOT | Recent_Used_ElementScalarWhereWithAggregatesInput | Recent_Used_ElementScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| shop_id | IntWithAggregatesFilter | Int | No |
| element_id | IntWithAggregatesFilter | Int | No |
| element_type | EnumElementTypeWithAggregatesFilter | ElementType | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Support_TicketWhereInput | Support_TicketWhereInput[] | No |
| OR | Support_TicketWhereInput[] | No |
| NOT | Support_TicketWhereInput | Support_TicketWhereInput[] | No |
| id | IntFilter | Int | No |
| uuid | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| ref_id | IntFilter | Int | No |
| ref_type | EnumSupportRefTypeFilter | SupportRefType | No |
| criteria | EnumSupportCriteriaFilter | SupportCriteria | No |
| reason | StringFilter | String | No |
| description | StringFilter | String | No |
| status | EnumSupportStatusNullableFilter | SupportStatus | Null | Yes |
| label | EnumSupportLabelNullableFilter | SupportLabel | Null | Yes |
| assignee | IntNullableFilter | Int | Null | Yes |
| assigned_at | DateTimeNullableFilter | DateTime | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| ticket_messages | Ticket_MessageListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| ref_id | SortOrder | No |
| ref_type | SortOrder | No |
| criteria | SortOrder | No |
| reason | SortOrder | No |
| description | SortOrder | No |
| status | SortOrder | SortOrderInput | No |
| label | SortOrder | SortOrderInput | No |
| assignee | SortOrder | SortOrderInput | No |
| assigned_at | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| ticket_messages | Ticket_MessageOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| ref_id | SortOrder | No |
| ref_type | SortOrder | No |
| criteria | SortOrder | No |
| reason | SortOrder | No |
| description | SortOrder | No |
| status | SortOrder | SortOrderInput | No |
| label | SortOrder | SortOrderInput | No |
| assignee | SortOrder | SortOrderInput | No |
| assigned_at | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| _count | Support_TicketCountOrderByAggregateInput | No |
| _avg | Support_TicketAvgOrderByAggregateInput | No |
| _max | Support_TicketMaxOrderByAggregateInput | No |
| _min | Support_TicketMinOrderByAggregateInput | No |
| _sum | Support_TicketSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Ticket_MessageWhereInput | Ticket_MessageWhereInput[] | No |
| OR | Ticket_MessageWhereInput[] | No |
| NOT | Ticket_MessageWhereInput | Ticket_MessageWhereInput[] | No |
| id | IntFilter | Int | No |
| ticket_id | IntFilter | Int | No |
| user_id | IntFilter | Int | No |
| message | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| support_ticket | Support_TicketRelationFilter | Support_TicketWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| ticket_id | SortOrder | No |
| user_id | SortOrder | No |
| message | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| support_ticket | Support_TicketOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| ticket_id | SortOrder | No |
| user_id | SortOrder | No |
| message | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| _count | Ticket_MessageCountOrderByAggregateInput | No |
| _avg | Ticket_MessageAvgOrderByAggregateInput | No |
| _max | Ticket_MessageMaxOrderByAggregateInput | No |
| _min | Ticket_MessageMinOrderByAggregateInput | No |
| _sum | Ticket_MessageSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Ticket_MessageScalarWhereWithAggregatesInput | Ticket_MessageScalarWhereWithAggregatesInput[] | No |
| OR | Ticket_MessageScalarWhereWithAggregatesInput[] | No |
| NOT | Ticket_MessageScalarWhereWithAggregatesInput | Ticket_MessageScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| ticket_id | IntWithAggregatesFilter | Int | No |
| user_id | IntWithAggregatesFilter | Int | No |
| message | StringWithAggregatesFilter | String | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Contact_RequestWhereInput | Contact_RequestWhereInput[] | No |
| OR | Contact_RequestWhereInput[] | No |
| NOT | Contact_RequestWhereInput | Contact_RequestWhereInput[] | No |
| id | IntFilter | Int | No |
| message | StringFilter | String | No |
| name | StringFilter | String | No |
| StringFilter | String | No | |
| phone | StringFilter | String | No |
| country_code | StringFilter | String | No |
| country | StringNullableFilter | String | Null | Yes |
| status | EnumContactStatusNullableFilter | ContactStatus | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| message | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| phone | SortOrder | No |
| country_code | SortOrder | No |
| country | SortOrder | SortOrderInput | No |
| status | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| message | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| phone | SortOrder | No |
| country_code | SortOrder | No |
| country | SortOrder | SortOrderInput | No |
| status | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| _count | Contact_RequestCountOrderByAggregateInput | No |
| _avg | Contact_RequestAvgOrderByAggregateInput | No |
| _max | Contact_RequestMaxOrderByAggregateInput | No |
| _min | Contact_RequestMinOrderByAggregateInput | No |
| _sum | Contact_RequestSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Contact_RequestScalarWhereWithAggregatesInput | Contact_RequestScalarWhereWithAggregatesInput[] | No |
| OR | Contact_RequestScalarWhereWithAggregatesInput[] | No |
| NOT | Contact_RequestScalarWhereWithAggregatesInput | Contact_RequestScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| message | StringWithAggregatesFilter | String | No |
| name | StringWithAggregatesFilter | String | No |
| StringWithAggregatesFilter | String | No | |
| phone | StringWithAggregatesFilter | String | No |
| country_code | StringWithAggregatesFilter | String | No |
| country | StringNullableWithAggregatesFilter | String | Null | Yes |
| status | EnumContactStatusNullableWithAggregatesFilter | ContactStatus | Null | Yes |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Team_MemberWhereInput | Team_MemberWhereInput[] | No |
| OR | Team_MemberWhereInput[] | No |
| NOT | Team_MemberWhereInput | Team_MemberWhereInput[] | No |
| id | IntFilter | Int | No |
| user_id | IntFilter | Int | No |
| role | EnumTeamMemberRoleFilter | TeamMemberRole | No |
| designation | StringNullableFilter | String | Null | Yes |
| badge | StringNullableFilter | String | Null | Yes |
| invited_by | IntNullableFilter | Int | Null | Yes |
| onboarded_at | DateTimeNullableFilter | DateTime | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| role | SortOrder | No |
| designation | SortOrder | SortOrderInput | No |
| badge | SortOrder | SortOrderInput | No |
| invited_by | SortOrder | SortOrderInput | No |
| onboarded_at | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| role | SortOrder | No |
| designation | SortOrder | SortOrderInput | No |
| badge | SortOrder | SortOrderInput | No |
| invited_by | SortOrder | SortOrderInput | No |
| onboarded_at | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| _count | Team_MemberCountOrderByAggregateInput | No |
| _avg | Team_MemberAvgOrderByAggregateInput | No |
| _max | Team_MemberMaxOrderByAggregateInput | No |
| _min | Team_MemberMinOrderByAggregateInput | No |
| _sum | Team_MemberSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Team_MemberScalarWhereWithAggregatesInput | Team_MemberScalarWhereWithAggregatesInput[] | No |
| OR | Team_MemberScalarWhereWithAggregatesInput[] | No |
| NOT | Team_MemberScalarWhereWithAggregatesInput | Team_MemberScalarWhereWithAggregatesInput[] | No |
| id | IntWithAggregatesFilter | Int | No |
| user_id | IntWithAggregatesFilter | Int | No |
| role | EnumTeamMemberRoleWithAggregatesFilter | TeamMemberRole | No |
| designation | StringNullableWithAggregatesFilter | String | Null | Yes |
| badge | StringNullableWithAggregatesFilter | String | Null | Yes |
| invited_by | IntNullableWithAggregatesFilter | Int | Null | Yes |
| onboarded_at | DateTimeNullableWithAggregatesFilter | DateTime | Null | Yes |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| updated_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutShopsInput | No |
| current_subscription | Shop_SubscriptionCreateNestedOneWithoutShopsInput | No |
| orders | OrderCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| subscription_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| orders | OrderUncheckedCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutShopsNestedInput | No |
| current_subscription | Shop_SubscriptionUpdateOneWithoutShopsNestedInput | No |
| orders | OrderUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| subscription_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orders | OrderUncheckedUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUncheckedUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUncheckedUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| subscription_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| subscription_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutElementsInput | No |
| images | Element_ImageCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseCreateNestedManyWithoutElementInput | No |
| tags | Element_TagCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| images | Element_ImageUncheckedCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseUncheckedCreateNestedManyWithoutElementInput | No |
| tags | Element_TagUncheckedCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryUncheckedCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutBundlesInput | No |
| elements | Bundle_ElementCreateNestedManyWithoutBundleInput | No |
| images | Bundle_ImageCreateNestedManyWithoutBundleInput | No |
| categories | Bundle_CategoryCreateNestedManyWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| elements | Bundle_ElementUncheckedCreateNestedManyWithoutBundleInput | No |
| images | Bundle_ImageUncheckedCreateNestedManyWithoutBundleInput | No |
| categories | Bundle_CategoryUncheckedCreateNestedManyWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| status | GenericStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutBundle_elementsInput | No |
| bundle | BundleCreateNestedOneWithoutElementsInput | No |
| element | ElementCreateNestedOneWithoutBundlesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| status | GenericStatus | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutBundle_elementsNestedInput | No |
| bundle | BundleUpdateOneWithoutElementsNestedInput | No |
| element | ElementUpdateOneWithoutBundlesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| status | GenericStatus | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| url | String | No |
| created_at | DateTime | No |
| element | ElementCreateNestedOneWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| element_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| url | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| element | ElementUpdateOneWithoutImagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| element_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| url | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| url | String | No |
| created_at | DateTime | No |
| bundle | BundleCreateNestedOneWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| bundle_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| url | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| bundle | BundleUpdateOneWithoutImagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| bundle_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| url | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | No |
| description | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| element | ElementCreateNestedOneWithoutBest_UsesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| title | String | No |
| description | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| element | ElementUpdateOneWithoutBest_UsesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| title | String | No |
| description | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutCategoriesInput | No |
| element_categories | Element_CategoryCreateNestedManyWithoutCategoryInput | No |
| bundle_categories | Bundle_CategoryCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| element_categories | Element_CategoryUncheckedCreateNestedManyWithoutCategoryInput | No |
| bundle_categories | Bundle_CategoryUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutCategoriesNestedInput | No |
| element_categories | Element_CategoryUpdateManyWithoutCategoryNestedInput | No |
| bundle_categories | Bundle_CategoryUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| element_categories | Element_CategoryUncheckedUpdateManyWithoutCategoryNestedInput | No |
| bundle_categories | Bundle_CategoryUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| element | ElementCreateNestedOneWithoutCategoriesInput | No |
| category | CategoryCreateNestedOneWithoutElement_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| element | ElementUpdateOneWithoutCategoriesNestedInput | No |
| category | CategoryUpdateOneWithoutElement_categoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| bundle | BundleCreateNestedOneWithoutCategoriesInput | No |
| category | CategoryCreateNestedOneWithoutBundle_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| bundle | BundleUpdateOneWithoutCategoriesNestedInput | No |
| category | CategoryUpdateOneWithoutBundle_categoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutTagsInput | No |
| elements | Element_TagCreateNestedManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| user_id | Int | No |
| description | String | Null | Yes |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| elements | Element_TagUncheckedCreateNestedManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutTagsNestedInput | No |
| elements | Element_TagUpdateManyWithoutTagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| elements | Element_TagUncheckedUpdateManyWithoutTagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| user_id | Int | No |
| description | String | Null | Yes |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| tag | TagCreateNestedOneWithoutElementsInput | No |
| element | ElementCreateNestedOneWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| tag_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| tag | TagUpdateOneWithoutElementsNestedInput | No |
| element | ElementUpdateOneWithoutTagsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| tag_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| tag_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| tag_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop | String | No |
| state | String | Null | Yes |
| isOnline | Boolean | No |
| scope | String | No |
| userId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop | String | No |
| state | String | Null | Yes |
| isOnline | Boolean | No |
| scope | String | No |
| userId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop | String | StringFieldUpdateOperationsInput | No |
| state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isOnline | Boolean | BoolFieldUpdateOperationsInput | No |
| scope | String | StringFieldUpdateOperationsInput | No |
| userId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop | String | StringFieldUpdateOperationsInput | No |
| state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isOnline | Boolean | BoolFieldUpdateOperationsInput | No |
| scope | String | StringFieldUpdateOperationsInput | No |
| userId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop | String | No |
| state | String | Null | Yes |
| isOnline | Boolean | No |
| scope | String | No |
| userId | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop | String | StringFieldUpdateOperationsInput | No |
| state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isOnline | Boolean | BoolFieldUpdateOperationsInput | No |
| scope | String | StringFieldUpdateOperationsInput | No |
| userId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop | String | StringFieldUpdateOperationsInput | No |
| state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| isOnline | Boolean | BoolFieldUpdateOperationsInput | No |
| scope | String | StringFieldUpdateOperationsInput | No |
| userId | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| shop | ShopCreateNestedOneWithoutOrdersInput | No |
| coupon | CouponCreateNestedOneWithoutOrdersInput | No |
| order_items | Order_ItemCreateNestedManyWithoutOrderInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| order_items | Order_ItemUncheckedCreateNestedManyWithoutOrderInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| asset_type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | OrderStatus | EnumOrderStatusFieldUpdateOperationsInput | No |
| sub_total | Decimal | DecimalFieldUpdateOperationsInput | No |
| discounted_amout | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| coupon_code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| coupon_discount_type | DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null | Yes |
| coupon_discount_value | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| grand_total | Decimal | DecimalFieldUpdateOperationsInput | No |
| affiliated_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| affiliated_commission | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| asset_id | Int | No |
| asset_type | AssetType | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| order_bundle_id | Int | Null | Yes |
| order | OrderCreateNestedOneWithoutOrder_itemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| order_id | Int | No |
| asset_id | Int | No |
| asset_type | AssetType | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| order_bundle_id | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| asset_id | Int | IntFieldUpdateOperationsInput | No |
| asset_type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| discounted_price | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| discount_type | DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null | Yes |
| discount_value | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| order_bundle_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| order | OrderUpdateOneWithoutOrder_itemsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| order_id | Int | IntFieldUpdateOperationsInput | No |
| asset_id | Int | IntFieldUpdateOperationsInput | No |
| asset_type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| discounted_price | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| discount_type | DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null | Yes |
| discount_value | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| order_bundle_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| order_id | Int | No |
| asset_id | Int | No |
| asset_type | AssetType | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| order_bundle_id | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| asset_id | Int | IntFieldUpdateOperationsInput | No |
| asset_type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| discounted_price | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| discount_type | DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null | Yes |
| discount_value | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| order_bundle_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| order_id | Int | IntFieldUpdateOperationsInput | No |
| asset_id | Int | IntFieldUpdateOperationsInput | No |
| asset_type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| discounted_price | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| discount_type | DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null | Yes |
| discount_value | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| order_bundle_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| affiliator | AffiliatorCreateNestedOneWithoutCouponsInput | No |
| user | UserCreateNestedOneWithoutCouponsInput | No |
| orders | OrderCreateNestedManyWithoutCouponInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| affiliated_by | Int | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| orders | OrderUncheckedCreateNestedManyWithoutCouponInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| affiliated_by | Int | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutAffiliatorsInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAffiliatorInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutAffiliatorInput | No |
| coupons | CouponCreateNestedManyWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| coupons | CouponUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| invited_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| type | AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput | No |
| type_other | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput | No |
| total_earned | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| total_paid | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| current_coupon_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| invited_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| type | AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput | No |
| type_other | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput | No |
| total_earned | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| total_paid | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| current_coupon_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| affiliator | AffiliatorCreateNestedOneWithoutAffiliator_commissionsInput | No |
| user | UserCreateNestedOneWithoutAffiliator_commissionsInput | No |
| order | OrderCreateNestedOneWithoutAffiliator_commissionsInput | No |
| shop | ShopCreateNestedOneWithoutAffiliator_commissionsInput | No |
| coupon | CouponCreateNestedOneWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| user_id | Int | No |
| order_id | Int | Null | Yes |
| shop_id | Int | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| user_id | Int | No |
| order_id | Int | Null | Yes |
| shop_id | Int | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| coupon_code | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| order_amout | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| coupon_discount_type | DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null | Yes |
| coupon_discount_value | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| commission_type | DiscountType | EnumDiscountTypeFieldUpdateOperationsInput | No |
| commission_value | Decimal | DecimalFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| status | CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| affiliator | AffiliatorCreateNestedOneWithoutAffiliator_withdraw_requestsInput | No |
| payment_method_detail | User_Pament_MethodCreateNestedOneWithoutAffiliator_withdraw_requestsInput | No |
| assigned_user | UserCreateNestedOneWithoutAffiliator_withdraw_requestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method_id | Int | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| assignee | Int | Null | Yes |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| status | CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reject_reason | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| affiliator | AffiliatorUpdateOneWithoutAffiliator_withdraw_requestsNestedInput | No |
| payment_method_detail | User_Pament_MethodUpdateOneWithoutAffiliator_withdraw_requestsNestedInput | No |
| assigned_user | UserUpdateOneWithoutAffiliator_withdraw_requestsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| affiliator_id | Int | IntFieldUpdateOperationsInput | No |
| status | CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method_id | Int | IntFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| payment_method_details | JsonNullValueInput | Json | No |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reject_reason | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method_id | Int | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| assignee | Int | Null | Yes |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| status | CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reject_reason | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| affiliator_id | Int | IntFieldUpdateOperationsInput | No |
| status | CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method_id | Int | IntFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| payment_method_details | JsonNullValueInput | Json | No |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reject_reason | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| method | PaymentMethod | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| user | UserCreateNestedOneWithoutUser_pament_methodsInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutPayment_method_detailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| method | PaymentMethod | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutPayment_method_detailInput | No |
| Name | Type | Nullable |
|---|---|---|
| method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | BoolFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutUser_pament_methodsNestedInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestUpdateManyWithoutPayment_method_detailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | BoolFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutPayment_method_detailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| method | PaymentMethod | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | BoolFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | BoolFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| yearly_discounted_price | Decimal | Null | Yes |
| trial_period | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutPricing_plansInput | No |
| subscriptions | Shop_SubscriptionCreateNestedManyWithoutPlanInput | No |
| pricing_plan_features | Pricing_Plan_FeatureCreateNestedManyWithoutPricing_planInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| yearly_discounted_price | Decimal | Null | Yes |
| trial_period | Int | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| subscriptions | Shop_SubscriptionUncheckedCreateNestedManyWithoutPlanInput | No |
| pricing_plan_features | Pricing_Plan_FeatureUncheckedCreateNestedManyWithoutPricing_planInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| yearly_discounted_price | Decimal | Null | Yes |
| trial_period | Int | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| tagline | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| type | PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput | No |
| is_recommended | Boolean | BoolFieldUpdateOperationsInput | No |
| is_popular | Boolean | BoolFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| discounted_price | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| yearly_discounted_price | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| trial_period | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| title | String | No |
| type | String | Null | Yes |
| description | String | Null | Yes |
| pricing_plan | Pricing_PlanCreateNestedOneWithoutPricing_plan_featuresInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| plan_id | Int | No |
| title | String | No |
| type | String | Null | Yes |
| description | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| title | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| pricing_plan | Pricing_PlanUpdateOneWithoutPricing_plan_featuresNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| plan_id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| plan_id | Int | No |
| title | String | No |
| type | String | Null | Yes |
| description | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| title | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| plan_id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| shop_id | Int | No |
| plan_type | PricingPlanType | No |
| status | SubscriptionStatus | No |
| created_at | DateTime | No |
| ended_at | DateTime | Null | Yes |
| ended_type | SubscriptionEndedType | Null | Yes |
| updated_at | DateTime | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| plan | Pricing_PlanCreateNestedOneWithoutSubscriptionsInput | No |
| shops | ShopCreateNestedManyWithoutCurrent_subscriptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| plan_id | Int | No |
| plan_type | PricingPlanType | No |
| status | SubscriptionStatus | No |
| created_at | DateTime | No |
| ended_at | DateTime | Null | Yes |
| ended_type | SubscriptionEndedType | Null | Yes |
| updated_at | DateTime | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| shops | ShopUncheckedCreateNestedManyWithoutCurrent_subscriptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| plan_type | PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput | No |
| status | SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| ended_type | SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| plan | Pricing_PlanUpdateOneWithoutSubscriptionsNestedInput | No |
| shops | ShopUpdateManyWithoutCurrent_subscriptionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| plan_id | Int | IntFieldUpdateOperationsInput | No |
| plan_type | PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput | No |
| status | SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| ended_type | SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| shops | ShopUncheckedUpdateManyWithoutCurrent_subscriptionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| plan_id | Int | No |
| plan_type | PricingPlanType | No |
| status | SubscriptionStatus | No |
| created_at | DateTime | No |
| ended_at | DateTime | Null | Yes |
| ended_type | SubscriptionEndedType | Null | Yes |
| updated_at | DateTime | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| plan_type | PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput | No |
| status | SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| ended_type | SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| plan_id | Int | IntFieldUpdateOperationsInput | No |
| plan_type | PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput | No |
| status | SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| ended_type | SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | No |
| answer | String | No |
| status | FaqStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutFaqsInput | No |
| category | Faq_CategoryCreateNestedOneWithoutFaqsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| question | String | No |
| answer | String | No |
| status | FaqStatus | No |
| category_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| status | FaqStatus | EnumFaqStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutFaqsNestedInput | No |
| category | Faq_CategoryUpdateOneWithoutFaqsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| status | FaqStatus | EnumFaqStatusFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| question | String | No |
| answer | String | No |
| status | FaqStatus | No |
| category_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| status | FaqStatus | EnumFaqStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| status | FaqStatus | EnumFaqStatusFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| description | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutFaq_categoriesInput | No |
| faqs | FaqCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| user_id | Int | No |
| description | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| faqs | FaqUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutFaq_categoriesNestedInput | No |
| faqs | FaqUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| faqs | FaqUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| user_id | Int | No |
| description | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| url | String | No |
| type | AttachmentType | No |
| ref_id | Int | No |
| ref_type | AttachmentRefType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| url | String | No |
| type | AttachmentType | No |
| ref_id | Int | No |
| ref_type | AttachmentRefType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| type | AttachmentType | EnumAttachmentTypeFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | AttachmentRefType | EnumAttachmentRefTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| type | AttachmentType | EnumAttachmentTypeFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | AttachmentRefType | EnumAttachmentRefTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| url | String | No |
| type | AttachmentType | No |
| ref_id | Int | No |
| ref_type | AttachmentRefType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| type | AttachmentType | EnumAttachmentTypeFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | AttachmentRefType | EnumAttachmentRefTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| type | AttachmentType | EnumAttachmentTypeFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | AttachmentRefType | EnumAttachmentRefTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| created_at | DateTime | No |
| shop | ShopCreateNestedOneWithoutWishlisted_elementsInput | No |
| element | ElementCreateNestedOneWithoutWishlisted_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shop | ShopUpdateOneWithoutWishlisted_elementsNestedInput | No |
| element | ElementUpdateOneWithoutWishlisted_elementsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| created_at | DateTime | No |
| shop | ShopCreateNestedOneWithoutBookmarked_elementsInput | No |
| element | ElementCreateNestedOneWithoutBookmarked_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shop | ShopUpdateOneWithoutBookmarked_elementsNestedInput | No |
| element | ElementUpdateOneWithoutBookmarked_elementsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| created_at | DateTime | No |
| shop | ShopCreateNestedOneWithoutRecent_used_elementsInput | No |
| element | ElementCreateNestedOneWithoutRecent_used_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shop | ShopUpdateOneWithoutRecent_used_elementsNestedInput | No |
| element | ElementUpdateOneWithoutRecent_used_elementsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| ref_id | Int | No |
| ref_type | SupportRefType | No |
| criteria | SupportCriteria | No |
| reason | String | No |
| description | String | No |
| status | SupportStatus | Null | Yes |
| label | SupportLabel | Null | Yes |
| assignee | Int | Null | Yes |
| assigned_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutSupport_ticketsInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutSupport_ticketInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| ref_id | Int | No |
| ref_type | SupportRefType | No |
| criteria | SupportCriteria | No |
| reason | String | No |
| description | String | No |
| status | SupportStatus | Null | Yes |
| label | SupportLabel | Null | Yes |
| assignee | Int | Null | Yes |
| assigned_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| ticket_messages | Ticket_MessageUncheckedCreateNestedManyWithoutSupport_ticketInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput | No |
| criteria | SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput | No |
| reason | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| status | SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null | Yes |
| label | SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null | Yes |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| assigned_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutSupport_ticketsNestedInput | No |
| ticket_messages | Ticket_MessageUpdateManyWithoutSupport_ticketNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput | No |
| criteria | SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput | No |
| reason | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| status | SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null | Yes |
| label | SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null | Yes |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| assigned_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ticket_messages | Ticket_MessageUncheckedUpdateManyWithoutSupport_ticketNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| ref_id | Int | No |
| ref_type | SupportRefType | No |
| criteria | SupportCriteria | No |
| reason | String | No |
| description | String | No |
| status | SupportStatus | Null | Yes |
| label | SupportLabel | Null | Yes |
| assignee | Int | Null | Yes |
| assigned_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput | No |
| criteria | SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput | No |
| reason | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| status | SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null | Yes |
| label | SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null | Yes |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| assigned_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput | No |
| criteria | SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput | No |
| reason | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| status | SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null | Yes |
| label | SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null | Yes |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| assigned_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| message | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutTicket_messagesInput | No |
| support_ticket | Support_TicketCreateNestedOneWithoutTicket_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| ticket_id | Int | No |
| user_id | Int | No |
| message | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| message | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutTicket_messagesNestedInput | No |
| support_ticket | Support_TicketUpdateOneWithoutTicket_messagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| ticket_id | Int | IntFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| ticket_id | Int | No |
| user_id | Int | No |
| message | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| message | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| ticket_id | Int | IntFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| message | String | No |
| name | String | No |
| String | No | |
| phone | String | No |
| country_code | String | No |
| country | String | Null | Yes |
| status | ContactStatus | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| message | String | No |
| name | String | No |
| String | No | |
| phone | String | No |
| country_code | String | No |
| country | String | Null | Yes |
| status | ContactStatus | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| message | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| phone | String | StringFieldUpdateOperationsInput | No |
| country_code | String | StringFieldUpdateOperationsInput | No |
| country | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | ContactStatus | NullableEnumContactStatusFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| phone | String | StringFieldUpdateOperationsInput | No |
| country_code | String | StringFieldUpdateOperationsInput | No |
| country | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | ContactStatus | NullableEnumContactStatusFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| message | String | No |
| name | String | No |
| String | No | |
| phone | String | No |
| country_code | String | No |
| country | String | Null | Yes |
| status | ContactStatus | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| message | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| phone | String | StringFieldUpdateOperationsInput | No |
| country_code | String | StringFieldUpdateOperationsInput | No |
| country | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | ContactStatus | NullableEnumContactStatusFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| String | StringFieldUpdateOperationsInput | No | |
| phone | String | StringFieldUpdateOperationsInput | No |
| country_code | String | StringFieldUpdateOperationsInput | No |
| country | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | ContactStatus | NullableEnumContactStatusFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| role | TeamMemberRole | No |
| designation | String | Null | Yes |
| badge | String | Null | Yes |
| invited_by | Int | Null | Yes |
| onboarded_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutTeam_membersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| role | TeamMemberRole | No |
| designation | String | Null | Yes |
| badge | String | Null | Yes |
| invited_by | Int | Null | Yes |
| onboarded_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| role | TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput | No |
| designation | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| badge | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| invited_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| onboarded_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutTeam_membersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| role | TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput | No |
| designation | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| badge | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| invited_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| onboarded_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| role | TeamMemberRole | No |
| designation | String | Null | Yes |
| badge | String | Null | Yes |
| invited_by | Int | Null | Yes |
| onboarded_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| role | TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput | No |
| designation | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| badge | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| invited_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| onboarded_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| role | TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput | No |
| designation | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| badge | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| invited_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| onboarded_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | Int | No |
| notIn | Int | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | String | No |
| notIn | String | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | String | Null | Yes |
| notIn | String | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | UserRole | No |
| in | UserRole[] | UserRole | No |
| notIn | UserRole[] | UserRole | No |
| not | UserRole | NestedEnumUserRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | Null | Yes |
| in | UserStatus[] | UserStatus | Null | Yes |
| notIn | UserStatus[] | UserStatus | Null | Yes |
| not | UserStatus | NestedEnumUserStatusNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | DateTime | Null | Yes |
| notIn | DateTime | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | DateTime | No |
| notIn | DateTime | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Int | Null | Yes |
| notIn | Int | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | ShopWhereInput | No |
| some | ShopWhereInput | No |
| none | ShopWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | BundleWhereInput | No |
| some | BundleWhereInput | No |
| none | BundleWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Bundle_ElementWhereInput | No |
| some | Bundle_ElementWhereInput | No |
| none | Bundle_ElementWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ElementWhereInput | No |
| some | ElementWhereInput | No |
| none | ElementWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Pricing_PlanWhereInput | No |
| some | Pricing_PlanWhereInput | No |
| none | Pricing_PlanWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FaqWhereInput | No |
| some | FaqWhereInput | No |
| none | FaqWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Faq_CategoryWhereInput | No |
| some | Faq_CategoryWhereInput | No |
| none | Faq_CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CategoryWhereInput | No |
| some | CategoryWhereInput | No |
| none | CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TagWhereInput | No |
| some | TagWhereInput | No |
| none | TagWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Support_TicketWhereInput | No |
| some | Support_TicketWhereInput | No |
| none | Support_TicketWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Ticket_MessageWhereInput | No |
| some | Ticket_MessageWhereInput | No |
| none | Ticket_MessageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | AffiliatorWhereInput | No |
| some | AffiliatorWhereInput | No |
| none | AffiliatorWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Affiliator_CommissionWhereInput | No |
| some | Affiliator_CommissionWhereInput | No |
| none | Affiliator_CommissionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Affiliator_Withdraw_RequestWhereInput | No |
| some | Affiliator_Withdraw_RequestWhereInput | No |
| none | Affiliator_Withdraw_RequestWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | CouponWhereInput | No |
| some | CouponWhereInput | No |
| none | CouponWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | User_Pament_MethodWhereInput | No |
| some | User_Pament_MethodWhereInput | No |
| none | User_Pament_MethodWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Team_MemberWhereInput | No |
| some | Team_MemberWhereInput | No |
| none | Team_MemberWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| nulls | NullsOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| first_name | SortOrder | No |
| last_name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| phone | SortOrder | No |
| profile_photo | SortOrder | No |
| role | SortOrder | No |
| status | SortOrder | No |
| is_verified | SortOrder | No |
| is_shopify_user | SortOrder | No |
| date_of_birth | SortOrder | No |
| country_code | SortOrder | No |
| country | SortOrder | No |
| address | SortOrder | No |
| website_url | SortOrder | No |
| social_handles | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| first_name | SortOrder | No |
| last_name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| phone | SortOrder | No |
| profile_photo | SortOrder | No |
| role | SortOrder | No |
| status | SortOrder | No |
| is_verified | SortOrder | No |
| is_shopify_user | SortOrder | No |
| date_of_birth | SortOrder | No |
| country_code | SortOrder | No |
| country | SortOrder | No |
| address | SortOrder | No |
| website_url | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| first_name | SortOrder | No |
| last_name | SortOrder | No |
| SortOrder | No | |
| password | SortOrder | No |
| phone | SortOrder | No |
| profile_photo | SortOrder | No |
| role | SortOrder | No |
| status | SortOrder | No |
| is_verified | SortOrder | No |
| is_shopify_user | SortOrder | No |
| date_of_birth | SortOrder | No |
| country_code | SortOrder | No |
| country | SortOrder | No |
| address | SortOrder | No |
| website_url | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | Int | No |
| notIn | Int | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | String | No |
| notIn | String | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | String | Null | Yes |
| notIn | String | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserRole | No |
| in | UserRole[] | UserRole | No |
| notIn | UserRole[] | UserRole | No |
| not | UserRole | NestedEnumUserRoleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumUserRoleFilter | No |
| _max | NestedEnumUserRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | Null | Yes |
| in | UserStatus[] | UserStatus | Null | Yes |
| notIn | UserStatus[] | UserStatus | Null | Yes |
| not | UserStatus | NestedEnumUserStatusNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumUserStatusNullableFilter | No |
| _max | NestedEnumUserStatusNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | DateTime | Null | Yes |
| notIn | DateTime | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| _count | NestedIntNullableFilter | No |
| _min | NestedJsonNullableFilter | No |
| _max | NestedJsonNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | DateTime | No |
| notIn | DateTime | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Int | Null | Yes |
| notIn | Int | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ShopStatus | No |
| in | ShopStatus[] | ShopStatus | No |
| notIn | ShopStatus[] | ShopStatus | No |
| not | ShopStatus | NestedEnumShopStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | Null | Yes |
| isNot | UserWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | Shop_SubscriptionWhereInput | Null | Yes |
| isNot | Shop_SubscriptionWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | OrderWhereInput | No |
| some | OrderWhereInput | No |
| none | OrderWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | BookmarkWhereInput | No |
| some | BookmarkWhereInput | No |
| none | BookmarkWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | WishlistWhereInput | No |
| some | WishlistWhereInput | No |
| none | WishlistWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Recent_Used_ElementWhereInput | No |
| some | Recent_Used_ElementWhereInput | No |
| none | Recent_Used_ElementWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| shopify_shop_id | SortOrder | No |
| name | SortOrder | No |
| domain | SortOrder | No |
| status | SortOrder | No |
| subscription_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| shopify_shop_id | SortOrder | No |
| subscription_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| shopify_shop_id | SortOrder | No |
| name | SortOrder | No |
| domain | SortOrder | No |
| status | SortOrder | No |
| subscription_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| shopify_shop_id | SortOrder | No |
| name | SortOrder | No |
| domain | SortOrder | No |
| status | SortOrder | No |
| subscription_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| shopify_shop_id | SortOrder | No |
| subscription_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ShopStatus | No |
| in | ShopStatus[] | ShopStatus | No |
| notIn | ShopStatus[] | ShopStatus | No |
| not | ShopStatus | NestedEnumShopStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumShopStatusFilter | No |
| _max | NestedEnumShopStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | GenericStatus | No |
| in | GenericStatus[] | GenericStatus | No |
| notIn | GenericStatus[] | GenericStatus | No |
| not | GenericStatus | NestedEnumGenericStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ElementType | No |
| in | ElementType[] | ElementType | No |
| notIn | ElementType[] | ElementType | No |
| not | ElementType | NestedEnumElementTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | No |
| in | Decimal[] | Decimal | No |
| notIn | Decimal[] | Decimal | No |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DiscountType | Null | Yes |
| in | DiscountType[] | DiscountType | Null | Yes |
| notIn | DiscountType[] | DiscountType | Null | Yes |
| not | DiscountType | NestedEnumDiscountTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | Null | Yes |
| in | Decimal[] | Decimal | Null | Yes |
| notIn | Decimal[] | Decimal | Null | Yes |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | Element_ImageWhereInput | No |
| some | Element_ImageWhereInput | No |
| none | Element_ImageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Element_Best_UseWhereInput | No |
| some | Element_Best_UseWhereInput | No |
| none | Element_Best_UseWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Element_TagWhereInput | No |
| some | Element_TagWhereInput | No |
| none | Element_TagWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Element_CategoryWhereInput | No |
| some | Element_CategoryWhereInput | No |
| none | Element_CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| featured_image | SortOrder | No |
| content | SortOrder | No |
| file_name | SortOrder | No |
| status | SortOrder | No |
| type | SortOrder | No |
| price | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| demo_url | SortOrder | No |
| video_url | SortOrder | No |
| version | SortOrder | No |
| user_id | SortOrder | No |
| wishlisted_count | SortOrder | No |
| bookmarked_count | SortOrder | No |
| added_theme_count | SortOrder | No |
| view_count | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| price | SortOrder | No |
| discount_value | SortOrder | No |
| user_id | SortOrder | No |
| wishlisted_count | SortOrder | No |
| bookmarked_count | SortOrder | No |
| added_theme_count | SortOrder | No |
| view_count | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| featured_image | SortOrder | No |
| content | SortOrder | No |
| file_name | SortOrder | No |
| status | SortOrder | No |
| type | SortOrder | No |
| price | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| demo_url | SortOrder | No |
| video_url | SortOrder | No |
| version | SortOrder | No |
| user_id | SortOrder | No |
| wishlisted_count | SortOrder | No |
| bookmarked_count | SortOrder | No |
| added_theme_count | SortOrder | No |
| view_count | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| featured_image | SortOrder | No |
| content | SortOrder | No |
| file_name | SortOrder | No |
| status | SortOrder | No |
| type | SortOrder | No |
| price | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| demo_url | SortOrder | No |
| video_url | SortOrder | No |
| version | SortOrder | No |
| user_id | SortOrder | No |
| wishlisted_count | SortOrder | No |
| bookmarked_count | SortOrder | No |
| added_theme_count | SortOrder | No |
| view_count | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| price | SortOrder | No |
| discount_value | SortOrder | No |
| user_id | SortOrder | No |
| wishlisted_count | SortOrder | No |
| bookmarked_count | SortOrder | No |
| added_theme_count | SortOrder | No |
| view_count | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | GenericStatus | No |
| in | GenericStatus[] | GenericStatus | No |
| notIn | GenericStatus[] | GenericStatus | No |
| not | GenericStatus | NestedEnumGenericStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumGenericStatusFilter | No |
| _max | NestedEnumGenericStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ElementType | No |
| in | ElementType[] | ElementType | No |
| notIn | ElementType[] | ElementType | No |
| not | ElementType | NestedEnumElementTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumElementTypeFilter | No |
| _max | NestedEnumElementTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | No |
| in | Decimal[] | Decimal | No |
| notIn | Decimal[] | Decimal | No |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedDecimalFilter | No |
| _sum | NestedDecimalFilter | No |
| _min | NestedDecimalFilter | No |
| _max | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DiscountType | Null | Yes |
| in | DiscountType[] | DiscountType | Null | Yes |
| notIn | DiscountType[] | DiscountType | Null | Yes |
| not | DiscountType | NestedEnumDiscountTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumDiscountTypeNullableFilter | No |
| _max | NestedEnumDiscountTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | Null | Yes |
| in | Decimal[] | Decimal | Null | Yes |
| notIn | Decimal[] | Decimal | Null | Yes |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedDecimalNullableFilter | No |
| _sum | NestedDecimalNullableFilter | No |
| _min | NestedDecimalNullableFilter | No |
| _max | NestedDecimalNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BundleType | No |
| in | BundleType[] | BundleType | No |
| notIn | BundleType[] | BundleType | No |
| not | BundleType | NestedEnumBundleTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | Bundle_ImageWhereInput | No |
| some | Bundle_ImageWhereInput | No |
| none | Bundle_ImageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Bundle_CategoryWhereInput | No |
| some | Bundle_CategoryWhereInput | No |
| none | Bundle_CategoryWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| featured_image | SortOrder | No |
| status | SortOrder | No |
| type | SortOrder | No |
| is_auto_price | SortOrder | No |
| price | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| demo_url | SortOrder | No |
| video_url | SortOrder | No |
| version | SortOrder | No |
| user_id | SortOrder | No |
| view_count | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| price | SortOrder | No |
| discount_value | SortOrder | No |
| user_id | SortOrder | No |
| view_count | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| featured_image | SortOrder | No |
| status | SortOrder | No |
| type | SortOrder | No |
| is_auto_price | SortOrder | No |
| price | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| demo_url | SortOrder | No |
| video_url | SortOrder | No |
| version | SortOrder | No |
| user_id | SortOrder | No |
| view_count | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| featured_image | SortOrder | No |
| status | SortOrder | No |
| type | SortOrder | No |
| is_auto_price | SortOrder | No |
| price | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| demo_url | SortOrder | No |
| video_url | SortOrder | No |
| version | SortOrder | No |
| user_id | SortOrder | No |
| view_count | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| price | SortOrder | No |
| discount_value | SortOrder | No |
| user_id | SortOrder | No |
| view_count | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BundleType | No |
| in | BundleType[] | BundleType | No |
| notIn | BundleType[] | BundleType | No |
| not | BundleType | NestedEnumBundleTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumBundleTypeFilter | No |
| _max | NestedEnumBundleTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | BundleWhereInput | Null | Yes |
| isNot | BundleWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | ElementWhereInput | Null | Yes |
| isNot | ElementWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| status | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| element_id | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| status | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| status | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| element_id | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| element_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| element_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| element_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| bundle_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| bundle_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| url | SortOrder | No |
| bundle_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| title | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AssetType | No |
| in | AssetType[] | AssetType | No |
| notIn | AssetType[] | AssetType | No |
| not | AssetType | NestedEnumAssetTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| type | SortOrder | No |
| status | SortOrder | No |
| image | SortOrder | No |
| banner | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| type | SortOrder | No |
| status | SortOrder | No |
| image | SortOrder | No |
| banner | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| description | SortOrder | No |
| type | SortOrder | No |
| status | SortOrder | No |
| image | SortOrder | No |
| banner | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AssetType | No |
| in | AssetType[] | AssetType | No |
| notIn | AssetType[] | AssetType | No |
| not | AssetType | NestedEnumAssetTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAssetTypeFilter | No |
| _max | NestedEnumAssetTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | CategoryWhereInput | Null | Yes |
| isNot | CategoryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| category_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| category_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| category_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| bundle_id | SortOrder | No |
| category_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| user_id | SortOrder | No |
| description | SortOrder | No |
| image | SortOrder | No |
| banner | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| user_id | SortOrder | No |
| description | SortOrder | No |
| image | SortOrder | No |
| banner | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| slug | SortOrder | No |
| user_id | SortOrder | No |
| description | SortOrder | No |
| image | SortOrder | No |
| banner | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | TagWhereInput | Null | Yes |
| isNot | TagWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| tag_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| tag_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| tag_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| tag_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| element_id | SortOrder | No |
| tag_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop | SortOrder | No |
| state | SortOrder | No |
| isOnline | SortOrder | No |
| scope | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop | SortOrder | No |
| state | SortOrder | No |
| isOnline | SortOrder | No |
| scope | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop | SortOrder | No |
| state | SortOrder | No |
| isOnline | SortOrder | No |
| scope | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderStatus | No |
| in | OrderStatus[] | OrderStatus | No |
| notIn | OrderStatus[] | OrderStatus | No |
| not | OrderStatus | NestedEnumOrderStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | ShopWhereInput | Null | Yes |
| isNot | ShopWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | CouponWhereInput | Null | Yes |
| isNot | CouponWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | Order_ItemWhereInput | No |
| some | Order_ItemWhereInput | No |
| none | Order_ItemWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| shop_id | SortOrder | No |
| asset_type | SortOrder | No |
| status | SortOrder | No |
| sub_total | SortOrder | No |
| discounted_amout | SortOrder | No |
| coupon_id | SortOrder | No |
| coupon_code | SortOrder | No |
| coupon_discount_type | SortOrder | No |
| coupon_discount_value | SortOrder | No |
| grand_total | SortOrder | No |
| affiliated_by | SortOrder | No |
| affiliated_commission | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| sub_total | SortOrder | No |
| discounted_amout | SortOrder | No |
| coupon_id | SortOrder | No |
| coupon_discount_value | SortOrder | No |
| grand_total | SortOrder | No |
| affiliated_by | SortOrder | No |
| affiliated_commission | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| shop_id | SortOrder | No |
| asset_type | SortOrder | No |
| status | SortOrder | No |
| sub_total | SortOrder | No |
| discounted_amout | SortOrder | No |
| coupon_id | SortOrder | No |
| coupon_code | SortOrder | No |
| coupon_discount_type | SortOrder | No |
| coupon_discount_value | SortOrder | No |
| grand_total | SortOrder | No |
| affiliated_by | SortOrder | No |
| affiliated_commission | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| shop_id | SortOrder | No |
| asset_type | SortOrder | No |
| status | SortOrder | No |
| sub_total | SortOrder | No |
| discounted_amout | SortOrder | No |
| coupon_id | SortOrder | No |
| coupon_code | SortOrder | No |
| coupon_discount_type | SortOrder | No |
| coupon_discount_value | SortOrder | No |
| grand_total | SortOrder | No |
| affiliated_by | SortOrder | No |
| affiliated_commission | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| sub_total | SortOrder | No |
| discounted_amout | SortOrder | No |
| coupon_id | SortOrder | No |
| coupon_discount_value | SortOrder | No |
| grand_total | SortOrder | No |
| affiliated_by | SortOrder | No |
| affiliated_commission | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderStatus | No |
| in | OrderStatus[] | OrderStatus | No |
| notIn | OrderStatus[] | OrderStatus | No |
| not | OrderStatus | NestedEnumOrderStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumOrderStatusFilter | No |
| _max | NestedEnumOrderStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | OrderWhereInput | Null | Yes |
| isNot | OrderWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| order_id | SortOrder | No |
| asset_id | SortOrder | No |
| asset_type | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| order_bundle_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| order_id | SortOrder | No |
| asset_id | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | No |
| discount_value | SortOrder | No |
| order_bundle_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| order_id | SortOrder | No |
| asset_id | SortOrder | No |
| asset_type | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| order_bundle_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| order_id | SortOrder | No |
| asset_id | SortOrder | No |
| asset_type | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| order_bundle_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| order_id | SortOrder | No |
| asset_id | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | No |
| discount_value | SortOrder | No |
| order_bundle_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CouponStatus | No |
| in | CouponStatus[] | CouponStatus | No |
| notIn | CouponStatus[] | CouponStatus | No |
| not | CouponStatus | NestedEnumCouponStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | AffiliatorWhereInput | Null | Yes |
| isNot | AffiliatorWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| status | SortOrder | No |
| expired_at | SortOrder | No |
| max_total_applied | SortOrder | No |
| max_applied_by_shop | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| min_order_amount | SortOrder | No |
| max_discount_limit | SortOrder | No |
| is_apply_on_asset_discount | SortOrder | No |
| affiliated_by | SortOrder | No |
| commission_type | SortOrder | No |
| commission_value | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| max_total_applied | SortOrder | No |
| max_applied_by_shop | SortOrder | No |
| discount_value | SortOrder | No |
| min_order_amount | SortOrder | No |
| max_discount_limit | SortOrder | No |
| affiliated_by | SortOrder | No |
| commission_value | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| status | SortOrder | No |
| expired_at | SortOrder | No |
| max_total_applied | SortOrder | No |
| max_applied_by_shop | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| min_order_amount | SortOrder | No |
| max_discount_limit | SortOrder | No |
| is_apply_on_asset_discount | SortOrder | No |
| affiliated_by | SortOrder | No |
| commission_type | SortOrder | No |
| commission_value | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| code | SortOrder | No |
| status | SortOrder | No |
| expired_at | SortOrder | No |
| max_total_applied | SortOrder | No |
| max_applied_by_shop | SortOrder | No |
| discount_type | SortOrder | No |
| discount_value | SortOrder | No |
| min_order_amount | SortOrder | No |
| max_discount_limit | SortOrder | No |
| is_apply_on_asset_discount | SortOrder | No |
| affiliated_by | SortOrder | No |
| commission_type | SortOrder | No |
| commission_value | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| max_total_applied | SortOrder | No |
| max_applied_by_shop | SortOrder | No |
| discount_value | SortOrder | No |
| min_order_amount | SortOrder | No |
| max_discount_limit | SortOrder | No |
| affiliated_by | SortOrder | No |
| commission_value | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CouponStatus | No |
| in | CouponStatus[] | CouponStatus | No |
| notIn | CouponStatus[] | CouponStatus | No |
| not | CouponStatus | NestedEnumCouponStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumCouponStatusFilter | No |
| _max | NestedEnumCouponStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AffiliatorType | No |
| in | AffiliatorType[] | AffiliatorType | No |
| notIn | AffiliatorType[] | AffiliatorType | No |
| not | AffiliatorType | NestedEnumAffiliatorTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AffiliatorStatus | No |
| in | AffiliatorStatus[] | AffiliatorStatus | No |
| notIn | AffiliatorStatus[] | AffiliatorStatus | No |
| not | AffiliatorStatus | NestedEnumAffiliatorStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| invited_by | SortOrder | No |
| type | SortOrder | No |
| type_other | SortOrder | No |
| status | SortOrder | No |
| total_earned | SortOrder | No |
| total_paid | SortOrder | No |
| current_coupon_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| invited_by | SortOrder | No |
| total_earned | SortOrder | No |
| total_paid | SortOrder | No |
| current_coupon_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| invited_by | SortOrder | No |
| type | SortOrder | No |
| type_other | SortOrder | No |
| status | SortOrder | No |
| total_earned | SortOrder | No |
| total_paid | SortOrder | No |
| current_coupon_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| invited_by | SortOrder | No |
| type | SortOrder | No |
| type_other | SortOrder | No |
| status | SortOrder | No |
| total_earned | SortOrder | No |
| total_paid | SortOrder | No |
| current_coupon_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| invited_by | SortOrder | No |
| total_earned | SortOrder | No |
| total_paid | SortOrder | No |
| current_coupon_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AffiliatorType | No |
| in | AffiliatorType[] | AffiliatorType | No |
| notIn | AffiliatorType[] | AffiliatorType | No |
| not | AffiliatorType | NestedEnumAffiliatorTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAffiliatorTypeFilter | No |
| _max | NestedEnumAffiliatorTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AffiliatorStatus | No |
| in | AffiliatorStatus[] | AffiliatorStatus | No |
| notIn | AffiliatorStatus[] | AffiliatorStatus | No |
| not | AffiliatorStatus | NestedEnumAffiliatorStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAffiliatorStatusFilter | No |
| _max | NestedEnumAffiliatorStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DiscountType | No |
| in | DiscountType[] | DiscountType | No |
| notIn | DiscountType[] | DiscountType | No |
| not | DiscountType | NestedEnumDiscountTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CommissionStatus | No |
| in | CommissionStatus[] | CommissionStatus | No |
| notIn | CommissionStatus[] | CommissionStatus | No |
| not | CommissionStatus | NestedEnumCommissionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| affiliator_id | SortOrder | No |
| user_id | SortOrder | No |
| order_id | SortOrder | No |
| shop_id | SortOrder | No |
| coupon_id | SortOrder | No |
| coupon_code | SortOrder | No |
| order_amout | SortOrder | No |
| coupon_discount_type | SortOrder | No |
| coupon_discount_value | SortOrder | No |
| commission_type | SortOrder | No |
| commission_value | SortOrder | No |
| amount | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| affiliator_id | SortOrder | No |
| user_id | SortOrder | No |
| order_id | SortOrder | No |
| shop_id | SortOrder | No |
| coupon_id | SortOrder | No |
| order_amout | SortOrder | No |
| coupon_discount_value | SortOrder | No |
| commission_value | SortOrder | No |
| amount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| affiliator_id | SortOrder | No |
| user_id | SortOrder | No |
| order_id | SortOrder | No |
| shop_id | SortOrder | No |
| coupon_id | SortOrder | No |
| coupon_code | SortOrder | No |
| order_amout | SortOrder | No |
| coupon_discount_type | SortOrder | No |
| coupon_discount_value | SortOrder | No |
| commission_type | SortOrder | No |
| commission_value | SortOrder | No |
| amount | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| affiliator_id | SortOrder | No |
| user_id | SortOrder | No |
| order_id | SortOrder | No |
| shop_id | SortOrder | No |
| coupon_id | SortOrder | No |
| coupon_code | SortOrder | No |
| order_amout | SortOrder | No |
| coupon_discount_type | SortOrder | No |
| coupon_discount_value | SortOrder | No |
| commission_type | SortOrder | No |
| commission_value | SortOrder | No |
| amount | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| affiliator_id | SortOrder | No |
| user_id | SortOrder | No |
| order_id | SortOrder | No |
| shop_id | SortOrder | No |
| coupon_id | SortOrder | No |
| order_amout | SortOrder | No |
| coupon_discount_value | SortOrder | No |
| commission_value | SortOrder | No |
| amount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DiscountType | No |
| in | DiscountType[] | DiscountType | No |
| notIn | DiscountType[] | DiscountType | No |
| not | DiscountType | NestedEnumDiscountTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumDiscountTypeFilter | No |
| _max | NestedEnumDiscountTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CommissionStatus | No |
| in | CommissionStatus[] | CommissionStatus | No |
| notIn | CommissionStatus[] | CommissionStatus | No |
| not | CommissionStatus | NestedEnumCommissionStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumCommissionStatusFilter | No |
| _max | NestedEnumCommissionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CommissionWithdrawStatus | No |
| in | CommissionWithdrawStatus[] | CommissionWithdrawStatus | No |
| notIn | CommissionWithdrawStatus[] | CommissionWithdrawStatus | No |
| not | CommissionWithdrawStatus | NestedEnumCommissionWithdrawStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PaymentMethod | No |
| in | PaymentMethod[] | PaymentMethod | No |
| notIn | PaymentMethod[] | PaymentMethod | No |
| not | PaymentMethod | NestedEnumPaymentMethodFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | User_Pament_MethodWhereInput | Null | Yes |
| isNot | User_Pament_MethodWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| affiliator_id | SortOrder | No |
| status | SortOrder | No |
| amount | SortOrder | No |
| payment_method_id | SortOrder | No |
| payment_method | SortOrder | No |
| payment_method_details | SortOrder | No |
| assignee | SortOrder | No |
| note | SortOrder | No |
| reject_reason | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| affiliator_id | SortOrder | No |
| amount | SortOrder | No |
| payment_method_id | SortOrder | No |
| assignee | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| affiliator_id | SortOrder | No |
| status | SortOrder | No |
| amount | SortOrder | No |
| payment_method_id | SortOrder | No |
| payment_method | SortOrder | No |
| assignee | SortOrder | No |
| note | SortOrder | No |
| reject_reason | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| affiliator_id | SortOrder | No |
| status | SortOrder | No |
| amount | SortOrder | No |
| payment_method_id | SortOrder | No |
| payment_method | SortOrder | No |
| assignee | SortOrder | No |
| note | SortOrder | No |
| reject_reason | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| affiliator_id | SortOrder | No |
| amount | SortOrder | No |
| payment_method_id | SortOrder | No |
| assignee | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CommissionWithdrawStatus | No |
| in | CommissionWithdrawStatus[] | CommissionWithdrawStatus | No |
| notIn | CommissionWithdrawStatus[] | CommissionWithdrawStatus | No |
| not | CommissionWithdrawStatus | NestedEnumCommissionWithdrawStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumCommissionWithdrawStatusFilter | No |
| _max | NestedEnumCommissionWithdrawStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PaymentMethod | No |
| in | PaymentMethod[] | PaymentMethod | No |
| notIn | PaymentMethod[] | PaymentMethod | No |
| not | PaymentMethod | NestedEnumPaymentMethodWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPaymentMethodFilter | No |
| _max | NestedEnumPaymentMethodFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedJsonFilter | No |
| _max | NestedJsonFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| method | SortOrder | No |
| details | SortOrder | No |
| is_default | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| method | SortOrder | No |
| is_default | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| method | SortOrder | No |
| is_default | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PricingPlanType | No |
| in | PricingPlanType[] | PricingPlanType | No |
| notIn | PricingPlanType[] | PricingPlanType | No |
| not | PricingPlanType | NestedEnumPricingPlanTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| every | Shop_SubscriptionWhereInput | No |
| some | Shop_SubscriptionWhereInput | No |
| none | Shop_SubscriptionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | Pricing_Plan_FeatureWhereInput | No |
| some | Pricing_Plan_FeatureWhereInput | No |
| none | Pricing_Plan_FeatureWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| tagline | SortOrder | No |
| description | SortOrder | No |
| type | SortOrder | No |
| is_recommended | SortOrder | No |
| is_popular | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | No |
| yearly_discounted_price | SortOrder | No |
| trial_period | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | No |
| yearly_discounted_price | SortOrder | No |
| trial_period | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| tagline | SortOrder | No |
| description | SortOrder | No |
| type | SortOrder | No |
| is_recommended | SortOrder | No |
| is_popular | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | No |
| yearly_discounted_price | SortOrder | No |
| trial_period | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| tagline | SortOrder | No |
| description | SortOrder | No |
| type | SortOrder | No |
| is_recommended | SortOrder | No |
| is_popular | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | No |
| yearly_discounted_price | SortOrder | No |
| trial_period | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| price | SortOrder | No |
| discounted_price | SortOrder | No |
| yearly_discounted_price | SortOrder | No |
| trial_period | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PricingPlanType | No |
| in | PricingPlanType[] | PricingPlanType | No |
| notIn | PricingPlanType[] | PricingPlanType | No |
| not | PricingPlanType | NestedEnumPricingPlanTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPricingPlanTypeFilter | No |
| _max | NestedEnumPricingPlanTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | Pricing_PlanWhereInput | Null | Yes |
| isNot | Pricing_PlanWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| plan_id | SortOrder | No |
| title | SortOrder | No |
| type | SortOrder | No |
| description | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| plan_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| plan_id | SortOrder | No |
| title | SortOrder | No |
| type | SortOrder | No |
| description | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| plan_id | SortOrder | No |
| title | SortOrder | No |
| type | SortOrder | No |
| description | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| plan_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SubscriptionStatus | No |
| in | SubscriptionStatus[] | SubscriptionStatus | No |
| notIn | SubscriptionStatus[] | SubscriptionStatus | No |
| not | SubscriptionStatus | NestedEnumSubscriptionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SubscriptionEndedType | Null | Yes |
| in | SubscriptionEndedType[] | SubscriptionEndedType | Null | Yes |
| notIn | SubscriptionEndedType[] | SubscriptionEndedType | Null | Yes |
| not | SubscriptionEndedType | NestedEnumSubscriptionEndedTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| shop_id | SortOrder | No |
| plan_id | SortOrder | No |
| plan_type | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| ended_at | SortOrder | No |
| ended_type | SortOrder | No |
| updated_at | SortOrder | No |
| amount | SortOrder | No |
| payment_method | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| plan_id | SortOrder | No |
| amount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| shop_id | SortOrder | No |
| plan_id | SortOrder | No |
| plan_type | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| ended_at | SortOrder | No |
| ended_type | SortOrder | No |
| updated_at | SortOrder | No |
| amount | SortOrder | No |
| payment_method | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| shop_id | SortOrder | No |
| plan_id | SortOrder | No |
| plan_type | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| ended_at | SortOrder | No |
| ended_type | SortOrder | No |
| updated_at | SortOrder | No |
| amount | SortOrder | No |
| payment_method | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| plan_id | SortOrder | No |
| amount | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SubscriptionStatus | No |
| in | SubscriptionStatus[] | SubscriptionStatus | No |
| notIn | SubscriptionStatus[] | SubscriptionStatus | No |
| not | SubscriptionStatus | NestedEnumSubscriptionStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumSubscriptionStatusFilter | No |
| _max | NestedEnumSubscriptionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SubscriptionEndedType | Null | Yes |
| in | SubscriptionEndedType[] | SubscriptionEndedType | Null | Yes |
| notIn | SubscriptionEndedType[] | SubscriptionEndedType | Null | Yes |
| not | SubscriptionEndedType | NestedEnumSubscriptionEndedTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumSubscriptionEndedTypeNullableFilter | No |
| _max | NestedEnumSubscriptionEndedTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FaqStatus | No |
| in | FaqStatus[] | FaqStatus | No |
| notIn | FaqStatus[] | FaqStatus | No |
| not | FaqStatus | NestedEnumFaqStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | Faq_CategoryWhereInput | Null | Yes |
| isNot | Faq_CategoryWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| question | SortOrder | No |
| answer | SortOrder | No |
| status | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| category_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| question | SortOrder | No |
| answer | SortOrder | No |
| status | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| question | SortOrder | No |
| answer | SortOrder | No |
| status | SortOrder | No |
| category_id | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| category_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FaqStatus | No |
| in | FaqStatus[] | FaqStatus | No |
| notIn | FaqStatus[] | FaqStatus | No |
| not | FaqStatus | NestedEnumFaqStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumFaqStatusFilter | No |
| _max | NestedEnumFaqStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| user_id | SortOrder | No |
| description | SortOrder | No |
| banner | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| user_id | SortOrder | No |
| description | SortOrder | No |
| banner | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| user_id | SortOrder | No |
| description | SortOrder | No |
| banner | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| deleted_at | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| deleted_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AttachmentType | No |
| in | AttachmentType[] | AttachmentType | No |
| notIn | AttachmentType[] | AttachmentType | No |
| not | AttachmentType | NestedEnumAttachmentTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AttachmentRefType | No |
| in | AttachmentRefType[] | AttachmentRefType | No |
| notIn | AttachmentRefType[] | AttachmentRefType | No |
| not | AttachmentRefType | NestedEnumAttachmentRefTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| url | SortOrder | No |
| type | SortOrder | No |
| ref_id | SortOrder | No |
| ref_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| url | SortOrder | No |
| type | SortOrder | No |
| ref_id | SortOrder | No |
| ref_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| url | SortOrder | No |
| type | SortOrder | No |
| ref_id | SortOrder | No |
| ref_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AttachmentType | No |
| in | AttachmentType[] | AttachmentType | No |
| notIn | AttachmentType[] | AttachmentType | No |
| not | AttachmentType | NestedEnumAttachmentTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAttachmentTypeFilter | No |
| _max | NestedEnumAttachmentTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AttachmentRefType | No |
| in | AttachmentRefType[] | AttachmentRefType | No |
| notIn | AttachmentRefType[] | AttachmentRefType | No |
| not | AttachmentRefType | NestedEnumAttachmentRefTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAttachmentRefTypeFilter | No |
| _max | NestedEnumAttachmentRefTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| element_type | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| shop_id | SortOrder | No |
| element_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportRefType | No |
| in | SupportRefType[] | SupportRefType | No |
| notIn | SupportRefType[] | SupportRefType | No |
| not | SupportRefType | NestedEnumSupportRefTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportCriteria | No |
| in | SupportCriteria[] | SupportCriteria | No |
| notIn | SupportCriteria[] | SupportCriteria | No |
| not | SupportCriteria | NestedEnumSupportCriteriaFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportStatus | Null | Yes |
| in | SupportStatus[] | SupportStatus | Null | Yes |
| notIn | SupportStatus[] | SupportStatus | Null | Yes |
| not | SupportStatus | NestedEnumSupportStatusNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportLabel | Null | Yes |
| in | SupportLabel[] | SupportLabel | Null | Yes |
| notIn | SupportLabel[] | SupportLabel | Null | Yes |
| not | SupportLabel | NestedEnumSupportLabelNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| ref_id | SortOrder | No |
| ref_type | SortOrder | No |
| criteria | SortOrder | No |
| reason | SortOrder | No |
| description | SortOrder | No |
| status | SortOrder | No |
| label | SortOrder | No |
| assignee | SortOrder | No |
| assigned_at | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| ref_id | SortOrder | No |
| assignee | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| ref_id | SortOrder | No |
| ref_type | SortOrder | No |
| criteria | SortOrder | No |
| reason | SortOrder | No |
| description | SortOrder | No |
| status | SortOrder | No |
| label | SortOrder | No |
| assignee | SortOrder | No |
| assigned_at | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| uuid | SortOrder | No |
| user_id | SortOrder | No |
| ref_id | SortOrder | No |
| ref_type | SortOrder | No |
| criteria | SortOrder | No |
| reason | SortOrder | No |
| description | SortOrder | No |
| status | SortOrder | No |
| label | SortOrder | No |
| assignee | SortOrder | No |
| assigned_at | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| ref_id | SortOrder | No |
| assignee | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportRefType | No |
| in | SupportRefType[] | SupportRefType | No |
| notIn | SupportRefType[] | SupportRefType | No |
| not | SupportRefType | NestedEnumSupportRefTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumSupportRefTypeFilter | No |
| _max | NestedEnumSupportRefTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportCriteria | No |
| in | SupportCriteria[] | SupportCriteria | No |
| notIn | SupportCriteria[] | SupportCriteria | No |
| not | SupportCriteria | NestedEnumSupportCriteriaWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumSupportCriteriaFilter | No |
| _max | NestedEnumSupportCriteriaFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportStatus | Null | Yes |
| in | SupportStatus[] | SupportStatus | Null | Yes |
| notIn | SupportStatus[] | SupportStatus | Null | Yes |
| not | SupportStatus | NestedEnumSupportStatusNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumSupportStatusNullableFilter | No |
| _max | NestedEnumSupportStatusNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportLabel | Null | Yes |
| in | SupportLabel[] | SupportLabel | Null | Yes |
| notIn | SupportLabel[] | SupportLabel | Null | Yes |
| not | SupportLabel | NestedEnumSupportLabelNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumSupportLabelNullableFilter | No |
| _max | NestedEnumSupportLabelNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | Support_TicketWhereInput | Null | Yes |
| isNot | Support_TicketWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| ticket_id | SortOrder | No |
| user_id | SortOrder | No |
| message | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| ticket_id | SortOrder | No |
| user_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| ticket_id | SortOrder | No |
| user_id | SortOrder | No |
| message | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| ticket_id | SortOrder | No |
| user_id | SortOrder | No |
| message | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| ticket_id | SortOrder | No |
| user_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ContactStatus | Null | Yes |
| in | ContactStatus[] | ContactStatus | Null | Yes |
| notIn | ContactStatus[] | ContactStatus | Null | Yes |
| not | ContactStatus | NestedEnumContactStatusNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| message | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| phone | SortOrder | No |
| country_code | SortOrder | No |
| country | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| message | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| phone | SortOrder | No |
| country_code | SortOrder | No |
| country | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| message | SortOrder | No |
| name | SortOrder | No |
| SortOrder | No | |
| phone | SortOrder | No |
| country_code | SortOrder | No |
| country | SortOrder | No |
| status | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ContactStatus | Null | Yes |
| in | ContactStatus[] | ContactStatus | Null | Yes |
| notIn | ContactStatus[] | ContactStatus | Null | Yes |
| not | ContactStatus | NestedEnumContactStatusNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumContactStatusNullableFilter | No |
| _max | NestedEnumContactStatusNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TeamMemberRole | No |
| in | TeamMemberRole[] | TeamMemberRole | No |
| notIn | TeamMemberRole[] | TeamMemberRole | No |
| not | TeamMemberRole | NestedEnumTeamMemberRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| role | SortOrder | No |
| designation | SortOrder | No |
| badge | SortOrder | No |
| invited_by | SortOrder | No |
| onboarded_at | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| invited_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| role | SortOrder | No |
| designation | SortOrder | No |
| badge | SortOrder | No |
| invited_by | SortOrder | No |
| onboarded_at | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| role | SortOrder | No |
| designation | SortOrder | No |
| badge | SortOrder | No |
| invited_by | SortOrder | No |
| onboarded_at | SortOrder | No |
| created_at | SortOrder | No |
| updated_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| invited_by | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TeamMemberRole | No |
| in | TeamMemberRole[] | TeamMemberRole | No |
| notIn | TeamMemberRole[] | TeamMemberRole | No |
| not | TeamMemberRole | NestedEnumTeamMemberRoleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTeamMemberRoleFilter | No |
| _max | NestedEnumTeamMemberRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutUserInput | ShopCreateWithoutUserInput[] | ShopUncheckedCreateWithoutUserInput | ShopUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ShopCreateOrConnectWithoutUserInput | ShopCreateOrConnectWithoutUserInput[] | No |
| createMany | ShopCreateManyUserInputEnvelope | No |
| connect | ShopWhereUniqueInput | ShopWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BundleCreateWithoutUserInput | BundleCreateWithoutUserInput[] | BundleUncheckedCreateWithoutUserInput | BundleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BundleCreateOrConnectWithoutUserInput | BundleCreateOrConnectWithoutUserInput[] | No |
| createMany | BundleCreateManyUserInputEnvelope | No |
| connect | BundleWhereUniqueInput | BundleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Bundle_ElementCreateWithoutUserInput | Bundle_ElementCreateWithoutUserInput[] | Bundle_ElementUncheckedCreateWithoutUserInput | Bundle_ElementUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Bundle_ElementCreateOrConnectWithoutUserInput | Bundle_ElementCreateOrConnectWithoutUserInput[] | No |
| createMany | Bundle_ElementCreateManyUserInputEnvelope | No |
| connect | Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutUserInput | ElementCreateWithoutUserInput[] | ElementUncheckedCreateWithoutUserInput | ElementUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ElementCreateOrConnectWithoutUserInput | ElementCreateOrConnectWithoutUserInput[] | No |
| createMany | ElementCreateManyUserInputEnvelope | No |
| connect | ElementWhereUniqueInput | ElementWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Pricing_PlanCreateWithoutUserInput | Pricing_PlanCreateWithoutUserInput[] | Pricing_PlanUncheckedCreateWithoutUserInput | Pricing_PlanUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Pricing_PlanCreateOrConnectWithoutUserInput | Pricing_PlanCreateOrConnectWithoutUserInput[] | No |
| createMany | Pricing_PlanCreateManyUserInputEnvelope | No |
| connect | Pricing_PlanWhereUniqueInput | Pricing_PlanWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FaqCreateWithoutUserInput | FaqCreateWithoutUserInput[] | FaqUncheckedCreateWithoutUserInput | FaqUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | FaqCreateOrConnectWithoutUserInput | FaqCreateOrConnectWithoutUserInput[] | No |
| createMany | FaqCreateManyUserInputEnvelope | No |
| connect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Faq_CategoryCreateWithoutUserInput | Faq_CategoryCreateWithoutUserInput[] | Faq_CategoryUncheckedCreateWithoutUserInput | Faq_CategoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Faq_CategoryCreateOrConnectWithoutUserInput | Faq_CategoryCreateOrConnectWithoutUserInput[] | No |
| createMany | Faq_CategoryCreateManyUserInputEnvelope | No |
| connect | Faq_CategoryWhereUniqueInput | Faq_CategoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutUserInput | CategoryCreateWithoutUserInput[] | CategoryUncheckedCreateWithoutUserInput | CategoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CategoryCreateOrConnectWithoutUserInput | CategoryCreateOrConnectWithoutUserInput[] | No |
| createMany | CategoryCreateManyUserInputEnvelope | No |
| connect | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutUserInput | TagCreateWithoutUserInput[] | TagUncheckedCreateWithoutUserInput | TagUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TagCreateOrConnectWithoutUserInput | TagCreateOrConnectWithoutUserInput[] | No |
| createMany | TagCreateManyUserInputEnvelope | No |
| connect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Support_TicketCreateWithoutUserInput | Support_TicketCreateWithoutUserInput[] | Support_TicketUncheckedCreateWithoutUserInput | Support_TicketUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Support_TicketCreateOrConnectWithoutUserInput | Support_TicketCreateOrConnectWithoutUserInput[] | No |
| createMany | Support_TicketCreateManyUserInputEnvelope | No |
| connect | Support_TicketWhereUniqueInput | Support_TicketWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Ticket_MessageCreateWithoutUserInput | Ticket_MessageCreateWithoutUserInput[] | Ticket_MessageUncheckedCreateWithoutUserInput | Ticket_MessageUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Ticket_MessageCreateOrConnectWithoutUserInput | Ticket_MessageCreateOrConnectWithoutUserInput[] | No |
| createMany | Ticket_MessageCreateManyUserInputEnvelope | No |
| connect | Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AffiliatorCreateWithoutUserInput | AffiliatorCreateWithoutUserInput[] | AffiliatorUncheckedCreateWithoutUserInput | AffiliatorUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AffiliatorCreateOrConnectWithoutUserInput | AffiliatorCreateOrConnectWithoutUserInput[] | No |
| createMany | AffiliatorCreateManyUserInputEnvelope | No |
| connect | AffiliatorWhereUniqueInput | AffiliatorWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CouponCreateWithoutUserInput | CouponCreateWithoutUserInput[] | CouponUncheckedCreateWithoutUserInput | CouponUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CouponCreateOrConnectWithoutUserInput | CouponCreateOrConnectWithoutUserInput[] | No |
| createMany | CouponCreateManyUserInputEnvelope | No |
| connect | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Team_MemberCreateWithoutUserInput | Team_MemberCreateWithoutUserInput[] | Team_MemberUncheckedCreateWithoutUserInput | Team_MemberUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Team_MemberCreateOrConnectWithoutUserInput | Team_MemberCreateOrConnectWithoutUserInput[] | No |
| createMany | Team_MemberCreateManyUserInputEnvelope | No |
| connect | Team_MemberWhereUniqueInput | Team_MemberWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutUserInput | ShopCreateWithoutUserInput[] | ShopUncheckedCreateWithoutUserInput | ShopUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ShopCreateOrConnectWithoutUserInput | ShopCreateOrConnectWithoutUserInput[] | No |
| createMany | ShopCreateManyUserInputEnvelope | No |
| connect | ShopWhereUniqueInput | ShopWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BundleCreateWithoutUserInput | BundleCreateWithoutUserInput[] | BundleUncheckedCreateWithoutUserInput | BundleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BundleCreateOrConnectWithoutUserInput | BundleCreateOrConnectWithoutUserInput[] | No |
| createMany | BundleCreateManyUserInputEnvelope | No |
| connect | BundleWhereUniqueInput | BundleWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Bundle_ElementCreateWithoutUserInput | Bundle_ElementCreateWithoutUserInput[] | Bundle_ElementUncheckedCreateWithoutUserInput | Bundle_ElementUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Bundle_ElementCreateOrConnectWithoutUserInput | Bundle_ElementCreateOrConnectWithoutUserInput[] | No |
| createMany | Bundle_ElementCreateManyUserInputEnvelope | No |
| connect | Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutUserInput | ElementCreateWithoutUserInput[] | ElementUncheckedCreateWithoutUserInput | ElementUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ElementCreateOrConnectWithoutUserInput | ElementCreateOrConnectWithoutUserInput[] | No |
| createMany | ElementCreateManyUserInputEnvelope | No |
| connect | ElementWhereUniqueInput | ElementWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Pricing_PlanCreateWithoutUserInput | Pricing_PlanCreateWithoutUserInput[] | Pricing_PlanUncheckedCreateWithoutUserInput | Pricing_PlanUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Pricing_PlanCreateOrConnectWithoutUserInput | Pricing_PlanCreateOrConnectWithoutUserInput[] | No |
| createMany | Pricing_PlanCreateManyUserInputEnvelope | No |
| connect | Pricing_PlanWhereUniqueInput | Pricing_PlanWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FaqCreateWithoutUserInput | FaqCreateWithoutUserInput[] | FaqUncheckedCreateWithoutUserInput | FaqUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | FaqCreateOrConnectWithoutUserInput | FaqCreateOrConnectWithoutUserInput[] | No |
| createMany | FaqCreateManyUserInputEnvelope | No |
| connect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Faq_CategoryCreateWithoutUserInput | Faq_CategoryCreateWithoutUserInput[] | Faq_CategoryUncheckedCreateWithoutUserInput | Faq_CategoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Faq_CategoryCreateOrConnectWithoutUserInput | Faq_CategoryCreateOrConnectWithoutUserInput[] | No |
| createMany | Faq_CategoryCreateManyUserInputEnvelope | No |
| connect | Faq_CategoryWhereUniqueInput | Faq_CategoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutUserInput | CategoryCreateWithoutUserInput[] | CategoryUncheckedCreateWithoutUserInput | CategoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CategoryCreateOrConnectWithoutUserInput | CategoryCreateOrConnectWithoutUserInput[] | No |
| createMany | CategoryCreateManyUserInputEnvelope | No |
| connect | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutUserInput | TagCreateWithoutUserInput[] | TagUncheckedCreateWithoutUserInput | TagUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TagCreateOrConnectWithoutUserInput | TagCreateOrConnectWithoutUserInput[] | No |
| createMany | TagCreateManyUserInputEnvelope | No |
| connect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Support_TicketCreateWithoutUserInput | Support_TicketCreateWithoutUserInput[] | Support_TicketUncheckedCreateWithoutUserInput | Support_TicketUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Support_TicketCreateOrConnectWithoutUserInput | Support_TicketCreateOrConnectWithoutUserInput[] | No |
| createMany | Support_TicketCreateManyUserInputEnvelope | No |
| connect | Support_TicketWhereUniqueInput | Support_TicketWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Ticket_MessageCreateWithoutUserInput | Ticket_MessageCreateWithoutUserInput[] | Ticket_MessageUncheckedCreateWithoutUserInput | Ticket_MessageUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Ticket_MessageCreateOrConnectWithoutUserInput | Ticket_MessageCreateOrConnectWithoutUserInput[] | No |
| createMany | Ticket_MessageCreateManyUserInputEnvelope | No |
| connect | Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | AffiliatorCreateWithoutUserInput | AffiliatorCreateWithoutUserInput[] | AffiliatorUncheckedCreateWithoutUserInput | AffiliatorUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AffiliatorCreateOrConnectWithoutUserInput | AffiliatorCreateOrConnectWithoutUserInput[] | No |
| createMany | AffiliatorCreateManyUserInputEnvelope | No |
| connect | AffiliatorWhereUniqueInput | AffiliatorWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CouponCreateWithoutUserInput | CouponCreateWithoutUserInput[] | CouponUncheckedCreateWithoutUserInput | CouponUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CouponCreateOrConnectWithoutUserInput | CouponCreateOrConnectWithoutUserInput[] | No |
| createMany | CouponCreateManyUserInputEnvelope | No |
| connect | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Team_MemberCreateWithoutUserInput | Team_MemberCreateWithoutUserInput[] | Team_MemberUncheckedCreateWithoutUserInput | Team_MemberUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | Team_MemberCreateOrConnectWithoutUserInput | Team_MemberCreateOrConnectWithoutUserInput[] | No |
| createMany | Team_MemberCreateManyUserInputEnvelope | No |
| connect | Team_MemberWhereUniqueInput | Team_MemberWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | UserRole | No |
| Name | Type | Nullable |
|---|---|---|
| set | UserStatus | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutUserInput | ShopCreateWithoutUserInput[] | ShopUncheckedCreateWithoutUserInput | ShopUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ShopCreateOrConnectWithoutUserInput | ShopCreateOrConnectWithoutUserInput[] | No |
| upsert | ShopUpsertWithWhereUniqueWithoutUserInput | ShopUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | ShopCreateManyUserInputEnvelope | No |
| set | ShopWhereUniqueInput | ShopWhereUniqueInput[] | No |
| disconnect | ShopWhereUniqueInput | ShopWhereUniqueInput[] | No |
| delete | ShopWhereUniqueInput | ShopWhereUniqueInput[] | No |
| connect | ShopWhereUniqueInput | ShopWhereUniqueInput[] | No |
| update | ShopUpdateWithWhereUniqueWithoutUserInput | ShopUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | ShopUpdateManyWithWhereWithoutUserInput | ShopUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | ShopScalarWhereInput | ShopScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BundleCreateWithoutUserInput | BundleCreateWithoutUserInput[] | BundleUncheckedCreateWithoutUserInput | BundleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BundleCreateOrConnectWithoutUserInput | BundleCreateOrConnectWithoutUserInput[] | No |
| upsert | BundleUpsertWithWhereUniqueWithoutUserInput | BundleUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | BundleCreateManyUserInputEnvelope | No |
| set | BundleWhereUniqueInput | BundleWhereUniqueInput[] | No |
| disconnect | BundleWhereUniqueInput | BundleWhereUniqueInput[] | No |
| delete | BundleWhereUniqueInput | BundleWhereUniqueInput[] | No |
| connect | BundleWhereUniqueInput | BundleWhereUniqueInput[] | No |
| update | BundleUpdateWithWhereUniqueWithoutUserInput | BundleUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | BundleUpdateManyWithWhereWithoutUserInput | BundleUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | BundleScalarWhereInput | BundleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutUserInput | ElementCreateWithoutUserInput[] | ElementUncheckedCreateWithoutUserInput | ElementUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ElementCreateOrConnectWithoutUserInput | ElementCreateOrConnectWithoutUserInput[] | No |
| upsert | ElementUpsertWithWhereUniqueWithoutUserInput | ElementUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | ElementCreateManyUserInputEnvelope | No |
| set | ElementWhereUniqueInput | ElementWhereUniqueInput[] | No |
| disconnect | ElementWhereUniqueInput | ElementWhereUniqueInput[] | No |
| delete | ElementWhereUniqueInput | ElementWhereUniqueInput[] | No |
| connect | ElementWhereUniqueInput | ElementWhereUniqueInput[] | No |
| update | ElementUpdateWithWhereUniqueWithoutUserInput | ElementUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | ElementUpdateManyWithWhereWithoutUserInput | ElementUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | ElementScalarWhereInput | ElementScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FaqCreateWithoutUserInput | FaqCreateWithoutUserInput[] | FaqUncheckedCreateWithoutUserInput | FaqUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | FaqCreateOrConnectWithoutUserInput | FaqCreateOrConnectWithoutUserInput[] | No |
| upsert | FaqUpsertWithWhereUniqueWithoutUserInput | FaqUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | FaqCreateManyUserInputEnvelope | No |
| set | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| disconnect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| delete | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| connect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| update | FaqUpdateWithWhereUniqueWithoutUserInput | FaqUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | FaqUpdateManyWithWhereWithoutUserInput | FaqUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | FaqScalarWhereInput | FaqScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutUserInput | CategoryCreateWithoutUserInput[] | CategoryUncheckedCreateWithoutUserInput | CategoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CategoryCreateOrConnectWithoutUserInput | CategoryCreateOrConnectWithoutUserInput[] | No |
| upsert | CategoryUpsertWithWhereUniqueWithoutUserInput | CategoryUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | CategoryCreateManyUserInputEnvelope | No |
| set | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| disconnect | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| delete | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| connect | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| update | CategoryUpdateWithWhereUniqueWithoutUserInput | CategoryUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | CategoryUpdateManyWithWhereWithoutUserInput | CategoryUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutUserInput | TagCreateWithoutUserInput[] | TagUncheckedCreateWithoutUserInput | TagUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TagCreateOrConnectWithoutUserInput | TagCreateOrConnectWithoutUserInput[] | No |
| upsert | TagUpsertWithWhereUniqueWithoutUserInput | TagUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | TagCreateManyUserInputEnvelope | No |
| set | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| disconnect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| delete | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| connect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| update | TagUpdateWithWhereUniqueWithoutUserInput | TagUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | TagUpdateManyWithWhereWithoutUserInput | TagUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | TagScalarWhereInput | TagScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CouponCreateWithoutUserInput | CouponCreateWithoutUserInput[] | CouponUncheckedCreateWithoutUserInput | CouponUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CouponCreateOrConnectWithoutUserInput | CouponCreateOrConnectWithoutUserInput[] | No |
| upsert | CouponUpsertWithWhereUniqueWithoutUserInput | CouponUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | CouponCreateManyUserInputEnvelope | No |
| set | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| disconnect | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| delete | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| connect | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| update | CouponUpdateWithWhereUniqueWithoutUserInput | CouponUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | CouponUpdateManyWithWhereWithoutUserInput | CouponUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | CouponScalarWhereInput | CouponScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutUserInput | ShopCreateWithoutUserInput[] | ShopUncheckedCreateWithoutUserInput | ShopUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ShopCreateOrConnectWithoutUserInput | ShopCreateOrConnectWithoutUserInput[] | No |
| upsert | ShopUpsertWithWhereUniqueWithoutUserInput | ShopUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | ShopCreateManyUserInputEnvelope | No |
| set | ShopWhereUniqueInput | ShopWhereUniqueInput[] | No |
| disconnect | ShopWhereUniqueInput | ShopWhereUniqueInput[] | No |
| delete | ShopWhereUniqueInput | ShopWhereUniqueInput[] | No |
| connect | ShopWhereUniqueInput | ShopWhereUniqueInput[] | No |
| update | ShopUpdateWithWhereUniqueWithoutUserInput | ShopUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | ShopUpdateManyWithWhereWithoutUserInput | ShopUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | ShopScalarWhereInput | ShopScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BundleCreateWithoutUserInput | BundleCreateWithoutUserInput[] | BundleUncheckedCreateWithoutUserInput | BundleUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BundleCreateOrConnectWithoutUserInput | BundleCreateOrConnectWithoutUserInput[] | No |
| upsert | BundleUpsertWithWhereUniqueWithoutUserInput | BundleUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | BundleCreateManyUserInputEnvelope | No |
| set | BundleWhereUniqueInput | BundleWhereUniqueInput[] | No |
| disconnect | BundleWhereUniqueInput | BundleWhereUniqueInput[] | No |
| delete | BundleWhereUniqueInput | BundleWhereUniqueInput[] | No |
| connect | BundleWhereUniqueInput | BundleWhereUniqueInput[] | No |
| update | BundleUpdateWithWhereUniqueWithoutUserInput | BundleUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | BundleUpdateManyWithWhereWithoutUserInput | BundleUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | BundleScalarWhereInput | BundleScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutUserInput | ElementCreateWithoutUserInput[] | ElementUncheckedCreateWithoutUserInput | ElementUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ElementCreateOrConnectWithoutUserInput | ElementCreateOrConnectWithoutUserInput[] | No |
| upsert | ElementUpsertWithWhereUniqueWithoutUserInput | ElementUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | ElementCreateManyUserInputEnvelope | No |
| set | ElementWhereUniqueInput | ElementWhereUniqueInput[] | No |
| disconnect | ElementWhereUniqueInput | ElementWhereUniqueInput[] | No |
| delete | ElementWhereUniqueInput | ElementWhereUniqueInput[] | No |
| connect | ElementWhereUniqueInput | ElementWhereUniqueInput[] | No |
| update | ElementUpdateWithWhereUniqueWithoutUserInput | ElementUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | ElementUpdateManyWithWhereWithoutUserInput | ElementUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | ElementScalarWhereInput | ElementScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FaqCreateWithoutUserInput | FaqCreateWithoutUserInput[] | FaqUncheckedCreateWithoutUserInput | FaqUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | FaqCreateOrConnectWithoutUserInput | FaqCreateOrConnectWithoutUserInput[] | No |
| upsert | FaqUpsertWithWhereUniqueWithoutUserInput | FaqUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | FaqCreateManyUserInputEnvelope | No |
| set | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| disconnect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| delete | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| connect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| update | FaqUpdateWithWhereUniqueWithoutUserInput | FaqUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | FaqUpdateManyWithWhereWithoutUserInput | FaqUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | FaqScalarWhereInput | FaqScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutUserInput | CategoryCreateWithoutUserInput[] | CategoryUncheckedCreateWithoutUserInput | CategoryUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CategoryCreateOrConnectWithoutUserInput | CategoryCreateOrConnectWithoutUserInput[] | No |
| upsert | CategoryUpsertWithWhereUniqueWithoutUserInput | CategoryUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | CategoryCreateManyUserInputEnvelope | No |
| set | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| disconnect | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| delete | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| connect | CategoryWhereUniqueInput | CategoryWhereUniqueInput[] | No |
| update | CategoryUpdateWithWhereUniqueWithoutUserInput | CategoryUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | CategoryUpdateManyWithWhereWithoutUserInput | CategoryUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutUserInput | TagCreateWithoutUserInput[] | TagUncheckedCreateWithoutUserInput | TagUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | TagCreateOrConnectWithoutUserInput | TagCreateOrConnectWithoutUserInput[] | No |
| upsert | TagUpsertWithWhereUniqueWithoutUserInput | TagUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | TagCreateManyUserInputEnvelope | No |
| set | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| disconnect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| delete | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| connect | TagWhereUniqueInput | TagWhereUniqueInput[] | No |
| update | TagUpdateWithWhereUniqueWithoutUserInput | TagUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | TagUpdateManyWithWhereWithoutUserInput | TagUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | TagScalarWhereInput | TagScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CouponCreateWithoutUserInput | CouponCreateWithoutUserInput[] | CouponUncheckedCreateWithoutUserInput | CouponUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | CouponCreateOrConnectWithoutUserInput | CouponCreateOrConnectWithoutUserInput[] | No |
| upsert | CouponUpsertWithWhereUniqueWithoutUserInput | CouponUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | CouponCreateManyUserInputEnvelope | No |
| set | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| disconnect | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| delete | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| connect | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| update | CouponUpdateWithWhereUniqueWithoutUserInput | CouponUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | CouponUpdateManyWithWhereWithoutUserInput | CouponUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | CouponScalarWhereInput | CouponScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutShopsInput | UserUncheckedCreateWithoutShopsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutShopsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Shop_SubscriptionCreateWithoutShopsInput | Shop_SubscriptionUncheckedCreateWithoutShopsInput | No |
| connectOrCreate | Shop_SubscriptionCreateOrConnectWithoutShopsInput | No |
| connect | Shop_SubscriptionWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutShopInput | OrderCreateWithoutShopInput[] | OrderUncheckedCreateWithoutShopInput | OrderUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutShopInput | OrderCreateOrConnectWithoutShopInput[] | No |
| createMany | OrderCreateManyShopInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutShopInput | BookmarkCreateWithoutShopInput[] | BookmarkUncheckedCreateWithoutShopInput | BookmarkUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutShopInput | BookmarkCreateOrConnectWithoutShopInput[] | No |
| createMany | BookmarkCreateManyShopInputEnvelope | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | WishlistCreateWithoutShopInput | WishlistCreateWithoutShopInput[] | WishlistUncheckedCreateWithoutShopInput | WishlistUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | WishlistCreateOrConnectWithoutShopInput | WishlistCreateOrConnectWithoutShopInput[] | No |
| createMany | WishlistCreateManyShopInputEnvelope | No |
| connect | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutShopInput | OrderCreateWithoutShopInput[] | OrderUncheckedCreateWithoutShopInput | OrderUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutShopInput | OrderCreateOrConnectWithoutShopInput[] | No |
| createMany | OrderCreateManyShopInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutShopInput | BookmarkCreateWithoutShopInput[] | BookmarkUncheckedCreateWithoutShopInput | BookmarkUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutShopInput | BookmarkCreateOrConnectWithoutShopInput[] | No |
| createMany | BookmarkCreateManyShopInputEnvelope | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | WishlistCreateWithoutShopInput | WishlistCreateWithoutShopInput[] | WishlistUncheckedCreateWithoutShopInput | WishlistUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | WishlistCreateOrConnectWithoutShopInput | WishlistCreateOrConnectWithoutShopInput[] | No |
| createMany | WishlistCreateManyShopInputEnvelope | No |
| connect | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | ShopStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutShopsInput | UserUncheckedCreateWithoutShopsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutShopsInput | No |
| upsert | UserUpsertWithoutShopsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutShopsInput | UserUncheckedUpdateWithoutShopsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Shop_SubscriptionCreateWithoutShopsInput | Shop_SubscriptionUncheckedCreateWithoutShopsInput | No |
| connectOrCreate | Shop_SubscriptionCreateOrConnectWithoutShopsInput | No |
| upsert | Shop_SubscriptionUpsertWithoutShopsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | Shop_SubscriptionWhereUniqueInput | No |
| update | Shop_SubscriptionUpdateWithoutShopsInput | Shop_SubscriptionUncheckedUpdateWithoutShopsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutShopInput | OrderCreateWithoutShopInput[] | OrderUncheckedCreateWithoutShopInput | OrderUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutShopInput | OrderCreateOrConnectWithoutShopInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutShopInput | OrderUpsertWithWhereUniqueWithoutShopInput[] | No |
| createMany | OrderCreateManyShopInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutShopInput | OrderUpdateWithWhereUniqueWithoutShopInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutShopInput | OrderUpdateManyWithWhereWithoutShopInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutShopInput | BookmarkCreateWithoutShopInput[] | BookmarkUncheckedCreateWithoutShopInput | BookmarkUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutShopInput | BookmarkCreateOrConnectWithoutShopInput[] | No |
| upsert | BookmarkUpsertWithWhereUniqueWithoutShopInput | BookmarkUpsertWithWhereUniqueWithoutShopInput[] | No |
| createMany | BookmarkCreateManyShopInputEnvelope | No |
| set | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| disconnect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| delete | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| update | BookmarkUpdateWithWhereUniqueWithoutShopInput | BookmarkUpdateWithWhereUniqueWithoutShopInput[] | No |
| updateMany | BookmarkUpdateManyWithWhereWithoutShopInput | BookmarkUpdateManyWithWhereWithoutShopInput[] | No |
| deleteMany | BookmarkScalarWhereInput | BookmarkScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | WishlistCreateWithoutShopInput | WishlistCreateWithoutShopInput[] | WishlistUncheckedCreateWithoutShopInput | WishlistUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | WishlistCreateOrConnectWithoutShopInput | WishlistCreateOrConnectWithoutShopInput[] | No |
| upsert | WishlistUpsertWithWhereUniqueWithoutShopInput | WishlistUpsertWithWhereUniqueWithoutShopInput[] | No |
| createMany | WishlistCreateManyShopInputEnvelope | No |
| set | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| disconnect | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| delete | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| connect | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| update | WishlistUpdateWithWhereUniqueWithoutShopInput | WishlistUpdateWithWhereUniqueWithoutShopInput[] | No |
| updateMany | WishlistUpdateManyWithWhereWithoutShopInput | WishlistUpdateManyWithWhereWithoutShopInput[] | No |
| deleteMany | WishlistScalarWhereInput | WishlistScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutShopInput | OrderCreateWithoutShopInput[] | OrderUncheckedCreateWithoutShopInput | OrderUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutShopInput | OrderCreateOrConnectWithoutShopInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutShopInput | OrderUpsertWithWhereUniqueWithoutShopInput[] | No |
| createMany | OrderCreateManyShopInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutShopInput | OrderUpdateWithWhereUniqueWithoutShopInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutShopInput | OrderUpdateManyWithWhereWithoutShopInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutShopInput | BookmarkCreateWithoutShopInput[] | BookmarkUncheckedCreateWithoutShopInput | BookmarkUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutShopInput | BookmarkCreateOrConnectWithoutShopInput[] | No |
| upsert | BookmarkUpsertWithWhereUniqueWithoutShopInput | BookmarkUpsertWithWhereUniqueWithoutShopInput[] | No |
| createMany | BookmarkCreateManyShopInputEnvelope | No |
| set | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| disconnect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| delete | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| update | BookmarkUpdateWithWhereUniqueWithoutShopInput | BookmarkUpdateWithWhereUniqueWithoutShopInput[] | No |
| updateMany | BookmarkUpdateManyWithWhereWithoutShopInput | BookmarkUpdateManyWithWhereWithoutShopInput[] | No |
| deleteMany | BookmarkScalarWhereInput | BookmarkScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | WishlistCreateWithoutShopInput | WishlistCreateWithoutShopInput[] | WishlistUncheckedCreateWithoutShopInput | WishlistUncheckedCreateWithoutShopInput[] | No |
| connectOrCreate | WishlistCreateOrConnectWithoutShopInput | WishlistCreateOrConnectWithoutShopInput[] | No |
| upsert | WishlistUpsertWithWhereUniqueWithoutShopInput | WishlistUpsertWithWhereUniqueWithoutShopInput[] | No |
| createMany | WishlistCreateManyShopInputEnvelope | No |
| set | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| disconnect | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| delete | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| connect | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| update | WishlistUpdateWithWhereUniqueWithoutShopInput | WishlistUpdateWithWhereUniqueWithoutShopInput[] | No |
| updateMany | WishlistUpdateManyWithWhereWithoutShopInput | WishlistUpdateManyWithWhereWithoutShopInput[] | No |
| deleteMany | WishlistScalarWhereInput | WishlistScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutElementsInput | UserUncheckedCreateWithoutElementsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutElementsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Element_TagCreateWithoutElementInput | Element_TagCreateWithoutElementInput[] | Element_TagUncheckedCreateWithoutElementInput | Element_TagUncheckedCreateWithoutElementInput[] | No |
| connectOrCreate | Element_TagCreateOrConnectWithoutElementInput | Element_TagCreateOrConnectWithoutElementInput[] | No |
| createMany | Element_TagCreateManyElementInputEnvelope | No |
| connect | Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | WishlistCreateWithoutElementInput | WishlistCreateWithoutElementInput[] | WishlistUncheckedCreateWithoutElementInput | WishlistUncheckedCreateWithoutElementInput[] | No |
| connectOrCreate | WishlistCreateOrConnectWithoutElementInput | WishlistCreateOrConnectWithoutElementInput[] | No |
| createMany | WishlistCreateManyElementInputEnvelope | No |
| connect | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutElementInput | BookmarkCreateWithoutElementInput[] | BookmarkUncheckedCreateWithoutElementInput | BookmarkUncheckedCreateWithoutElementInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutElementInput | BookmarkCreateOrConnectWithoutElementInput[] | No |
| createMany | BookmarkCreateManyElementInputEnvelope | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Element_TagCreateWithoutElementInput | Element_TagCreateWithoutElementInput[] | Element_TagUncheckedCreateWithoutElementInput | Element_TagUncheckedCreateWithoutElementInput[] | No |
| connectOrCreate | Element_TagCreateOrConnectWithoutElementInput | Element_TagCreateOrConnectWithoutElementInput[] | No |
| createMany | Element_TagCreateManyElementInputEnvelope | No |
| connect | Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | WishlistCreateWithoutElementInput | WishlistCreateWithoutElementInput[] | WishlistUncheckedCreateWithoutElementInput | WishlistUncheckedCreateWithoutElementInput[] | No |
| connectOrCreate | WishlistCreateOrConnectWithoutElementInput | WishlistCreateOrConnectWithoutElementInput[] | No |
| createMany | WishlistCreateManyElementInputEnvelope | No |
| connect | WishlistWhereUniqueInput | WishlistWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutElementInput | BookmarkCreateWithoutElementInput[] | BookmarkUncheckedCreateWithoutElementInput | BookmarkUncheckedCreateWithoutElementInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutElementInput | BookmarkCreateOrConnectWithoutElementInput[] | No |
| createMany | BookmarkCreateManyElementInputEnvelope | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | GenericStatus | No |
| Name | Type | Nullable |
|---|---|---|
| set | ElementType | No |
| Name | Type | Nullable |
|---|---|---|
| set | Decimal | No |
| increment | Decimal | No |
| decrement | Decimal | No |
| multiply | Decimal | No |
| divide | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| set | DiscountType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Decimal | Null | Yes |
| increment | Decimal | No |
| decrement | Decimal | No |
| multiply | Decimal | No |
| divide | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutElementsInput | UserUncheckedCreateWithoutElementsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutElementsInput | No |
| upsert | UserUpsertWithoutElementsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutElementsInput | UserUncheckedUpdateWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBundlesInput | UserUncheckedCreateWithoutBundlesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBundlesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Bundle_ImageCreateWithoutBundleInput | Bundle_ImageCreateWithoutBundleInput[] | Bundle_ImageUncheckedCreateWithoutBundleInput | Bundle_ImageUncheckedCreateWithoutBundleInput[] | No |
| connectOrCreate | Bundle_ImageCreateOrConnectWithoutBundleInput | Bundle_ImageCreateOrConnectWithoutBundleInput[] | No |
| createMany | Bundle_ImageCreateManyBundleInputEnvelope | No |
| connect | Bundle_ImageWhereUniqueInput | Bundle_ImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Bundle_ImageCreateWithoutBundleInput | Bundle_ImageCreateWithoutBundleInput[] | Bundle_ImageUncheckedCreateWithoutBundleInput | Bundle_ImageUncheckedCreateWithoutBundleInput[] | No |
| connectOrCreate | Bundle_ImageCreateOrConnectWithoutBundleInput | Bundle_ImageCreateOrConnectWithoutBundleInput[] | No |
| createMany | Bundle_ImageCreateManyBundleInputEnvelope | No |
| connect | Bundle_ImageWhereUniqueInput | Bundle_ImageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | BundleType | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBundlesInput | UserUncheckedCreateWithoutBundlesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBundlesInput | No |
| upsert | UserUpsertWithoutBundlesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutBundlesInput | UserUncheckedUpdateWithoutBundlesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBundle_elementsInput | UserUncheckedCreateWithoutBundle_elementsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBundle_elementsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BundleCreateWithoutElementsInput | BundleUncheckedCreateWithoutElementsInput | No |
| connectOrCreate | BundleCreateOrConnectWithoutElementsInput | No |
| connect | BundleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutBundlesInput | ElementUncheckedCreateWithoutBundlesInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutBundlesInput | No |
| connect | ElementWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBundle_elementsInput | UserUncheckedCreateWithoutBundle_elementsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBundle_elementsInput | No |
| upsert | UserUpsertWithoutBundle_elementsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutBundle_elementsInput | UserUncheckedUpdateWithoutBundle_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BundleCreateWithoutElementsInput | BundleUncheckedCreateWithoutElementsInput | No |
| connectOrCreate | BundleCreateOrConnectWithoutElementsInput | No |
| upsert | BundleUpsertWithoutElementsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | BundleWhereUniqueInput | No |
| update | BundleUpdateWithoutElementsInput | BundleUncheckedUpdateWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutBundlesInput | ElementUncheckedCreateWithoutBundlesInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutBundlesInput | No |
| upsert | ElementUpsertWithoutBundlesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ElementWhereUniqueInput | No |
| update | ElementUpdateWithoutBundlesInput | ElementUncheckedUpdateWithoutBundlesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutImagesInput | ElementUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutImagesInput | No |
| connect | ElementWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutImagesInput | ElementUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutImagesInput | No |
| upsert | ElementUpsertWithoutImagesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ElementWhereUniqueInput | No |
| update | ElementUpdateWithoutImagesInput | ElementUncheckedUpdateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BundleCreateWithoutImagesInput | BundleUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | BundleCreateOrConnectWithoutImagesInput | No |
| connect | BundleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BundleCreateWithoutImagesInput | BundleUncheckedCreateWithoutImagesInput | No |
| connectOrCreate | BundleCreateOrConnectWithoutImagesInput | No |
| upsert | BundleUpsertWithoutImagesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | BundleWhereUniqueInput | No |
| update | BundleUpdateWithoutImagesInput | BundleUncheckedUpdateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutBest_UsesInput | ElementUncheckedCreateWithoutBest_UsesInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutBest_UsesInput | No |
| connect | ElementWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutBest_UsesInput | ElementUncheckedCreateWithoutBest_UsesInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutBest_UsesInput | No |
| upsert | ElementUpsertWithoutBest_UsesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ElementWhereUniqueInput | No |
| update | ElementUpdateWithoutBest_UsesInput | ElementUncheckedUpdateWithoutBest_UsesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCategoriesInput | UserUncheckedCreateWithoutCategoriesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCategoriesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | AssetType | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCategoriesInput | UserUncheckedCreateWithoutCategoriesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCategoriesInput | No |
| upsert | UserUpsertWithoutCategoriesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutCategoriesInput | UserUncheckedUpdateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutCategoriesInput | ElementUncheckedCreateWithoutCategoriesInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutCategoriesInput | No |
| connect | ElementWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutElement_categoriesInput | CategoryUncheckedCreateWithoutElement_categoriesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutElement_categoriesInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutCategoriesInput | ElementUncheckedCreateWithoutCategoriesInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutCategoriesInput | No |
| upsert | ElementUpsertWithoutCategoriesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ElementWhereUniqueInput | No |
| update | ElementUpdateWithoutCategoriesInput | ElementUncheckedUpdateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutElement_categoriesInput | CategoryUncheckedCreateWithoutElement_categoriesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutElement_categoriesInput | No |
| upsert | CategoryUpsertWithoutElement_categoriesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateWithoutElement_categoriesInput | CategoryUncheckedUpdateWithoutElement_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BundleCreateWithoutCategoriesInput | BundleUncheckedCreateWithoutCategoriesInput | No |
| connectOrCreate | BundleCreateOrConnectWithoutCategoriesInput | No |
| connect | BundleWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutBundle_categoriesInput | CategoryUncheckedCreateWithoutBundle_categoriesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutBundle_categoriesInput | No |
| connect | CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BundleCreateWithoutCategoriesInput | BundleUncheckedCreateWithoutCategoriesInput | No |
| connectOrCreate | BundleCreateOrConnectWithoutCategoriesInput | No |
| upsert | BundleUpsertWithoutCategoriesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | BundleWhereUniqueInput | No |
| update | BundleUpdateWithoutCategoriesInput | BundleUncheckedUpdateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CategoryCreateWithoutBundle_categoriesInput | CategoryUncheckedCreateWithoutBundle_categoriesInput | No |
| connectOrCreate | CategoryCreateOrConnectWithoutBundle_categoriesInput | No |
| upsert | CategoryUpsertWithoutBundle_categoriesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CategoryWhereUniqueInput | No |
| update | CategoryUpdateWithoutBundle_categoriesInput | CategoryUncheckedUpdateWithoutBundle_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTagsInput | UserUncheckedCreateWithoutTagsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTagsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Element_TagCreateWithoutTagInput | Element_TagCreateWithoutTagInput[] | Element_TagUncheckedCreateWithoutTagInput | Element_TagUncheckedCreateWithoutTagInput[] | No |
| connectOrCreate | Element_TagCreateOrConnectWithoutTagInput | Element_TagCreateOrConnectWithoutTagInput[] | No |
| createMany | Element_TagCreateManyTagInputEnvelope | No |
| connect | Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Element_TagCreateWithoutTagInput | Element_TagCreateWithoutTagInput[] | Element_TagUncheckedCreateWithoutTagInput | Element_TagUncheckedCreateWithoutTagInput[] | No |
| connectOrCreate | Element_TagCreateOrConnectWithoutTagInput | Element_TagCreateOrConnectWithoutTagInput[] | No |
| createMany | Element_TagCreateManyTagInputEnvelope | No |
| connect | Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTagsInput | UserUncheckedCreateWithoutTagsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTagsInput | No |
| upsert | UserUpsertWithoutTagsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutTagsInput | UserUncheckedUpdateWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutElementsInput | TagUncheckedCreateWithoutElementsInput | No |
| connectOrCreate | TagCreateOrConnectWithoutElementsInput | No |
| connect | TagWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutTagsInput | ElementUncheckedCreateWithoutTagsInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutTagsInput | No |
| connect | ElementWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TagCreateWithoutElementsInput | TagUncheckedCreateWithoutElementsInput | No |
| connectOrCreate | TagCreateOrConnectWithoutElementsInput | No |
| upsert | TagUpsertWithoutElementsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | TagWhereUniqueInput | No |
| update | TagUpdateWithoutElementsInput | TagUncheckedUpdateWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutTagsInput | ElementUncheckedCreateWithoutTagsInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutTagsInput | No |
| upsert | ElementUpsertWithoutTagsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ElementWhereUniqueInput | No |
| update | ElementUpdateWithoutTagsInput | ElementUncheckedUpdateWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutOrdersInput | ShopUncheckedCreateWithoutOrdersInput | No |
| connectOrCreate | ShopCreateOrConnectWithoutOrdersInput | No |
| connect | ShopWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CouponCreateWithoutOrdersInput | CouponUncheckedCreateWithoutOrdersInput | No |
| connectOrCreate | CouponCreateOrConnectWithoutOrdersInput | No |
| connect | CouponWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Order_ItemCreateWithoutOrderInput | Order_ItemCreateWithoutOrderInput[] | Order_ItemUncheckedCreateWithoutOrderInput | Order_ItemUncheckedCreateWithoutOrderInput[] | No |
| connectOrCreate | Order_ItemCreateOrConnectWithoutOrderInput | Order_ItemCreateOrConnectWithoutOrderInput[] | No |
| createMany | Order_ItemCreateManyOrderInputEnvelope | No |
| connect | Order_ItemWhereUniqueInput | Order_ItemWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | Order_ItemCreateWithoutOrderInput | Order_ItemCreateWithoutOrderInput[] | Order_ItemUncheckedCreateWithoutOrderInput | Order_ItemUncheckedCreateWithoutOrderInput[] | No |
| connectOrCreate | Order_ItemCreateOrConnectWithoutOrderInput | Order_ItemCreateOrConnectWithoutOrderInput[] | No |
| createMany | Order_ItemCreateManyOrderInputEnvelope | No |
| connect | Order_ItemWhereUniqueInput | Order_ItemWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | OrderStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutOrdersInput | ShopUncheckedCreateWithoutOrdersInput | No |
| connectOrCreate | ShopCreateOrConnectWithoutOrdersInput | No |
| upsert | ShopUpsertWithoutOrdersInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ShopWhereUniqueInput | No |
| update | ShopUpdateWithoutOrdersInput | ShopUncheckedUpdateWithoutOrdersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CouponCreateWithoutOrdersInput | CouponUncheckedCreateWithoutOrdersInput | No |
| connectOrCreate | CouponCreateOrConnectWithoutOrdersInput | No |
| upsert | CouponUpsertWithoutOrdersInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CouponWhereUniqueInput | No |
| update | CouponUpdateWithoutOrdersInput | CouponUncheckedUpdateWithoutOrdersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrder_itemsInput | OrderUncheckedCreateWithoutOrder_itemsInput | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrder_itemsInput | No |
| connect | OrderWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutOrder_itemsInput | OrderUncheckedCreateWithoutOrder_itemsInput | No |
| connectOrCreate | OrderCreateOrConnectWithoutOrder_itemsInput | No |
| upsert | OrderUpsertWithoutOrder_itemsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | OrderWhereUniqueInput | No |
| update | OrderUpdateWithoutOrder_itemsInput | OrderUncheckedUpdateWithoutOrder_itemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AffiliatorCreateWithoutCouponsInput | AffiliatorUncheckedCreateWithoutCouponsInput | No |
| connectOrCreate | AffiliatorCreateOrConnectWithoutCouponsInput | No |
| connect | AffiliatorWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCouponsInput | UserUncheckedCreateWithoutCouponsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCouponsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutCouponInput | OrderCreateWithoutCouponInput[] | OrderUncheckedCreateWithoutCouponInput | OrderUncheckedCreateWithoutCouponInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutCouponInput | OrderCreateOrConnectWithoutCouponInput[] | No |
| createMany | OrderCreateManyCouponInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutCouponInput | OrderCreateWithoutCouponInput[] | OrderUncheckedCreateWithoutCouponInput | OrderUncheckedCreateWithoutCouponInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutCouponInput | OrderCreateOrConnectWithoutCouponInput[] | No |
| createMany | OrderCreateManyCouponInputEnvelope | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | CouponStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | AffiliatorCreateWithoutCouponsInput | AffiliatorUncheckedCreateWithoutCouponsInput | No |
| connectOrCreate | AffiliatorCreateOrConnectWithoutCouponsInput | No |
| upsert | AffiliatorUpsertWithoutCouponsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | AffiliatorWhereUniqueInput | No |
| update | AffiliatorUpdateWithoutCouponsInput | AffiliatorUncheckedUpdateWithoutCouponsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCouponsInput | UserUncheckedCreateWithoutCouponsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCouponsInput | No |
| upsert | UserUpsertWithoutCouponsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutCouponsInput | UserUncheckedUpdateWithoutCouponsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutCouponInput | OrderCreateWithoutCouponInput[] | OrderUncheckedCreateWithoutCouponInput | OrderUncheckedCreateWithoutCouponInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutCouponInput | OrderCreateOrConnectWithoutCouponInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutCouponInput | OrderUpsertWithWhereUniqueWithoutCouponInput[] | No |
| createMany | OrderCreateManyCouponInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutCouponInput | OrderUpdateWithWhereUniqueWithoutCouponInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutCouponInput | OrderUpdateManyWithWhereWithoutCouponInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutCouponInput | OrderCreateWithoutCouponInput[] | OrderUncheckedCreateWithoutCouponInput | OrderUncheckedCreateWithoutCouponInput[] | No |
| connectOrCreate | OrderCreateOrConnectWithoutCouponInput | OrderCreateOrConnectWithoutCouponInput[] | No |
| upsert | OrderUpsertWithWhereUniqueWithoutCouponInput | OrderUpsertWithWhereUniqueWithoutCouponInput[] | No |
| createMany | OrderCreateManyCouponInputEnvelope | No |
| set | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| disconnect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| delete | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| connect | OrderWhereUniqueInput | OrderWhereUniqueInput[] | No |
| update | OrderUpdateWithWhereUniqueWithoutCouponInput | OrderUpdateWithWhereUniqueWithoutCouponInput[] | No |
| updateMany | OrderUpdateManyWithWhereWithoutCouponInput | OrderUpdateManyWithWhereWithoutCouponInput[] | No |
| deleteMany | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAffiliatorsInput | UserUncheckedCreateWithoutAffiliatorsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAffiliatorsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CouponCreateWithoutAffiliatorInput | CouponCreateWithoutAffiliatorInput[] | CouponUncheckedCreateWithoutAffiliatorInput | CouponUncheckedCreateWithoutAffiliatorInput[] | No |
| connectOrCreate | CouponCreateOrConnectWithoutAffiliatorInput | CouponCreateOrConnectWithoutAffiliatorInput[] | No |
| createMany | CouponCreateManyAffiliatorInputEnvelope | No |
| connect | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | CouponCreateWithoutAffiliatorInput | CouponCreateWithoutAffiliatorInput[] | CouponUncheckedCreateWithoutAffiliatorInput | CouponUncheckedCreateWithoutAffiliatorInput[] | No |
| connectOrCreate | CouponCreateOrConnectWithoutAffiliatorInput | CouponCreateOrConnectWithoutAffiliatorInput[] | No |
| createMany | CouponCreateManyAffiliatorInputEnvelope | No |
| connect | CouponWhereUniqueInput | CouponWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | AffiliatorType | No |
| Name | Type | Nullable |
|---|---|---|
| set | AffiliatorStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAffiliatorsInput | UserUncheckedCreateWithoutAffiliatorsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAffiliatorsInput | No |
| upsert | UserUpsertWithoutAffiliatorsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutAffiliatorsInput | UserUncheckedUpdateWithoutAffiliatorsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AffiliatorCreateWithoutAffiliator_commissionsInput | AffiliatorUncheckedCreateWithoutAffiliator_commissionsInput | No |
| connectOrCreate | AffiliatorCreateOrConnectWithoutAffiliator_commissionsInput | No |
| connect | AffiliatorWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAffiliator_commissionsInput | UserUncheckedCreateWithoutAffiliator_commissionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAffiliator_commissionsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutAffiliator_commissionsInput | OrderUncheckedCreateWithoutAffiliator_commissionsInput | No |
| connectOrCreate | OrderCreateOrConnectWithoutAffiliator_commissionsInput | No |
| connect | OrderWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutAffiliator_commissionsInput | ShopUncheckedCreateWithoutAffiliator_commissionsInput | No |
| connectOrCreate | ShopCreateOrConnectWithoutAffiliator_commissionsInput | No |
| connect | ShopWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CouponCreateWithoutAffiliator_commissionsInput | CouponUncheckedCreateWithoutAffiliator_commissionsInput | No |
| connectOrCreate | CouponCreateOrConnectWithoutAffiliator_commissionsInput | No |
| connect | CouponWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | DiscountType | No |
| Name | Type | Nullable |
|---|---|---|
| set | CommissionStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | AffiliatorCreateWithoutAffiliator_commissionsInput | AffiliatorUncheckedCreateWithoutAffiliator_commissionsInput | No |
| connectOrCreate | AffiliatorCreateOrConnectWithoutAffiliator_commissionsInput | No |
| upsert | AffiliatorUpsertWithoutAffiliator_commissionsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | AffiliatorWhereUniqueInput | No |
| update | AffiliatorUpdateWithoutAffiliator_commissionsInput | AffiliatorUncheckedUpdateWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAffiliator_commissionsInput | UserUncheckedCreateWithoutAffiliator_commissionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAffiliator_commissionsInput | No |
| upsert | UserUpsertWithoutAffiliator_commissionsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutAffiliator_commissionsInput | UserUncheckedUpdateWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | OrderCreateWithoutAffiliator_commissionsInput | OrderUncheckedCreateWithoutAffiliator_commissionsInput | No |
| connectOrCreate | OrderCreateOrConnectWithoutAffiliator_commissionsInput | No |
| upsert | OrderUpsertWithoutAffiliator_commissionsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | OrderWhereUniqueInput | No |
| update | OrderUpdateWithoutAffiliator_commissionsInput | OrderUncheckedUpdateWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutAffiliator_commissionsInput | ShopUncheckedCreateWithoutAffiliator_commissionsInput | No |
| connectOrCreate | ShopCreateOrConnectWithoutAffiliator_commissionsInput | No |
| upsert | ShopUpsertWithoutAffiliator_commissionsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ShopWhereUniqueInput | No |
| update | ShopUpdateWithoutAffiliator_commissionsInput | ShopUncheckedUpdateWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CouponCreateWithoutAffiliator_commissionsInput | CouponUncheckedCreateWithoutAffiliator_commissionsInput | No |
| connectOrCreate | CouponCreateOrConnectWithoutAffiliator_commissionsInput | No |
| upsert | CouponUpsertWithoutAffiliator_commissionsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | CouponWhereUniqueInput | No |
| update | CouponUpdateWithoutAffiliator_commissionsInput | CouponUncheckedUpdateWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AffiliatorCreateWithoutAffiliator_withdraw_requestsInput | AffiliatorUncheckedCreateWithoutAffiliator_withdraw_requestsInput | No |
| connectOrCreate | AffiliatorCreateOrConnectWithoutAffiliator_withdraw_requestsInput | No |
| connect | AffiliatorWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | User_Pament_MethodCreateWithoutAffiliator_withdraw_requestsInput | User_Pament_MethodUncheckedCreateWithoutAffiliator_withdraw_requestsInput | No |
| connectOrCreate | User_Pament_MethodCreateOrConnectWithoutAffiliator_withdraw_requestsInput | No |
| connect | User_Pament_MethodWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAffiliator_withdraw_requestsInput | UserUncheckedCreateWithoutAffiliator_withdraw_requestsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAffiliator_withdraw_requestsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | CommissionWithdrawStatus | No |
| Name | Type | Nullable |
|---|---|---|
| set | PaymentMethod | No |
| Name | Type | Nullable |
|---|---|---|
| create | AffiliatorCreateWithoutAffiliator_withdraw_requestsInput | AffiliatorUncheckedCreateWithoutAffiliator_withdraw_requestsInput | No |
| connectOrCreate | AffiliatorCreateOrConnectWithoutAffiliator_withdraw_requestsInput | No |
| upsert | AffiliatorUpsertWithoutAffiliator_withdraw_requestsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | AffiliatorWhereUniqueInput | No |
| update | AffiliatorUpdateWithoutAffiliator_withdraw_requestsInput | AffiliatorUncheckedUpdateWithoutAffiliator_withdraw_requestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | User_Pament_MethodCreateWithoutAffiliator_withdraw_requestsInput | User_Pament_MethodUncheckedCreateWithoutAffiliator_withdraw_requestsInput | No |
| connectOrCreate | User_Pament_MethodCreateOrConnectWithoutAffiliator_withdraw_requestsInput | No |
| upsert | User_Pament_MethodUpsertWithoutAffiliator_withdraw_requestsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | User_Pament_MethodWhereUniqueInput | No |
| update | User_Pament_MethodUpdateWithoutAffiliator_withdraw_requestsInput | User_Pament_MethodUncheckedUpdateWithoutAffiliator_withdraw_requestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAffiliator_withdraw_requestsInput | UserUncheckedCreateWithoutAffiliator_withdraw_requestsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAffiliator_withdraw_requestsInput | No |
| upsert | UserUpsertWithoutAffiliator_withdraw_requestsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutAffiliator_withdraw_requestsInput | UserUncheckedUpdateWithoutAffiliator_withdraw_requestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUser_pament_methodsInput | UserUncheckedCreateWithoutUser_pament_methodsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUser_pament_methodsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutUser_pament_methodsInput | UserUncheckedCreateWithoutUser_pament_methodsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutUser_pament_methodsInput | No |
| upsert | UserUpsertWithoutUser_pament_methodsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutUser_pament_methodsInput | UserUncheckedUpdateWithoutUser_pament_methodsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPricing_plansInput | UserUncheckedCreateWithoutPricing_plansInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPricing_plansInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | PricingPlanType | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPricing_plansInput | UserUncheckedCreateWithoutPricing_plansInput | No |
| connectOrCreate | UserCreateOrConnectWithoutPricing_plansInput | No |
| upsert | UserUpsertWithoutPricing_plansInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutPricing_plansInput | UserUncheckedUpdateWithoutPricing_plansInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Pricing_PlanCreateWithoutPricing_plan_featuresInput | Pricing_PlanUncheckedCreateWithoutPricing_plan_featuresInput | No |
| connectOrCreate | Pricing_PlanCreateOrConnectWithoutPricing_plan_featuresInput | No |
| connect | Pricing_PlanWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Pricing_PlanCreateWithoutPricing_plan_featuresInput | Pricing_PlanUncheckedCreateWithoutPricing_plan_featuresInput | No |
| connectOrCreate | Pricing_PlanCreateOrConnectWithoutPricing_plan_featuresInput | No |
| upsert | Pricing_PlanUpsertWithoutPricing_plan_featuresInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | Pricing_PlanWhereUniqueInput | No |
| update | Pricing_PlanUpdateWithoutPricing_plan_featuresInput | Pricing_PlanUncheckedUpdateWithoutPricing_plan_featuresInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Pricing_PlanCreateWithoutSubscriptionsInput | Pricing_PlanUncheckedCreateWithoutSubscriptionsInput | No |
| connectOrCreate | Pricing_PlanCreateOrConnectWithoutSubscriptionsInput | No |
| connect | Pricing_PlanWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | SubscriptionStatus | No |
| Name | Type | Nullable |
|---|---|---|
| set | SubscriptionEndedType | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | Pricing_PlanCreateWithoutSubscriptionsInput | Pricing_PlanUncheckedCreateWithoutSubscriptionsInput | No |
| connectOrCreate | Pricing_PlanCreateOrConnectWithoutSubscriptionsInput | No |
| upsert | Pricing_PlanUpsertWithoutSubscriptionsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | Pricing_PlanWhereUniqueInput | No |
| update | Pricing_PlanUpdateWithoutSubscriptionsInput | Pricing_PlanUncheckedUpdateWithoutSubscriptionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFaqsInput | UserUncheckedCreateWithoutFaqsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFaqsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Faq_CategoryCreateWithoutFaqsInput | Faq_CategoryUncheckedCreateWithoutFaqsInput | No |
| connectOrCreate | Faq_CategoryCreateOrConnectWithoutFaqsInput | No |
| connect | Faq_CategoryWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | FaqStatus | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFaqsInput | UserUncheckedCreateWithoutFaqsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFaqsInput | No |
| upsert | UserUpsertWithoutFaqsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutFaqsInput | UserUncheckedUpdateWithoutFaqsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Faq_CategoryCreateWithoutFaqsInput | Faq_CategoryUncheckedCreateWithoutFaqsInput | No |
| connectOrCreate | Faq_CategoryCreateOrConnectWithoutFaqsInput | No |
| upsert | Faq_CategoryUpsertWithoutFaqsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | Faq_CategoryWhereUniqueInput | No |
| update | Faq_CategoryUpdateWithoutFaqsInput | Faq_CategoryUncheckedUpdateWithoutFaqsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFaq_categoriesInput | UserUncheckedCreateWithoutFaq_categoriesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFaq_categoriesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FaqCreateWithoutCategoryInput | FaqCreateWithoutCategoryInput[] | FaqUncheckedCreateWithoutCategoryInput | FaqUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | FaqCreateOrConnectWithoutCategoryInput | FaqCreateOrConnectWithoutCategoryInput[] | No |
| createMany | FaqCreateManyCategoryInputEnvelope | No |
| connect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FaqCreateWithoutCategoryInput | FaqCreateWithoutCategoryInput[] | FaqUncheckedCreateWithoutCategoryInput | FaqUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | FaqCreateOrConnectWithoutCategoryInput | FaqCreateOrConnectWithoutCategoryInput[] | No |
| createMany | FaqCreateManyCategoryInputEnvelope | No |
| connect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFaq_categoriesInput | UserUncheckedCreateWithoutFaq_categoriesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFaq_categoriesInput | No |
| upsert | UserUpsertWithoutFaq_categoriesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutFaq_categoriesInput | UserUncheckedUpdateWithoutFaq_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | FaqCreateWithoutCategoryInput | FaqCreateWithoutCategoryInput[] | FaqUncheckedCreateWithoutCategoryInput | FaqUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | FaqCreateOrConnectWithoutCategoryInput | FaqCreateOrConnectWithoutCategoryInput[] | No |
| upsert | FaqUpsertWithWhereUniqueWithoutCategoryInput | FaqUpsertWithWhereUniqueWithoutCategoryInput[] | No |
| createMany | FaqCreateManyCategoryInputEnvelope | No |
| set | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| disconnect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| delete | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| connect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| update | FaqUpdateWithWhereUniqueWithoutCategoryInput | FaqUpdateWithWhereUniqueWithoutCategoryInput[] | No |
| updateMany | FaqUpdateManyWithWhereWithoutCategoryInput | FaqUpdateManyWithWhereWithoutCategoryInput[] | No |
| deleteMany | FaqScalarWhereInput | FaqScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FaqCreateWithoutCategoryInput | FaqCreateWithoutCategoryInput[] | FaqUncheckedCreateWithoutCategoryInput | FaqUncheckedCreateWithoutCategoryInput[] | No |
| connectOrCreate | FaqCreateOrConnectWithoutCategoryInput | FaqCreateOrConnectWithoutCategoryInput[] | No |
| upsert | FaqUpsertWithWhereUniqueWithoutCategoryInput | FaqUpsertWithWhereUniqueWithoutCategoryInput[] | No |
| createMany | FaqCreateManyCategoryInputEnvelope | No |
| set | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| disconnect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| delete | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| connect | FaqWhereUniqueInput | FaqWhereUniqueInput[] | No |
| update | FaqUpdateWithWhereUniqueWithoutCategoryInput | FaqUpdateWithWhereUniqueWithoutCategoryInput[] | No |
| updateMany | FaqUpdateManyWithWhereWithoutCategoryInput | FaqUpdateManyWithWhereWithoutCategoryInput[] | No |
| deleteMany | FaqScalarWhereInput | FaqScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | AttachmentType | No |
| Name | Type | Nullable |
|---|---|---|
| set | AttachmentRefType | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutWishlisted_elementsInput | ShopUncheckedCreateWithoutWishlisted_elementsInput | No |
| connectOrCreate | ShopCreateOrConnectWithoutWishlisted_elementsInput | No |
| connect | ShopWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutWishlisted_elementsInput | ElementUncheckedCreateWithoutWishlisted_elementsInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutWishlisted_elementsInput | No |
| connect | ElementWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutWishlisted_elementsInput | ShopUncheckedCreateWithoutWishlisted_elementsInput | No |
| connectOrCreate | ShopCreateOrConnectWithoutWishlisted_elementsInput | No |
| upsert | ShopUpsertWithoutWishlisted_elementsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ShopWhereUniqueInput | No |
| update | ShopUpdateWithoutWishlisted_elementsInput | ShopUncheckedUpdateWithoutWishlisted_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutWishlisted_elementsInput | ElementUncheckedCreateWithoutWishlisted_elementsInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutWishlisted_elementsInput | No |
| upsert | ElementUpsertWithoutWishlisted_elementsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ElementWhereUniqueInput | No |
| update | ElementUpdateWithoutWishlisted_elementsInput | ElementUncheckedUpdateWithoutWishlisted_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutBookmarked_elementsInput | ShopUncheckedCreateWithoutBookmarked_elementsInput | No |
| connectOrCreate | ShopCreateOrConnectWithoutBookmarked_elementsInput | No |
| connect | ShopWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutBookmarked_elementsInput | ElementUncheckedCreateWithoutBookmarked_elementsInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutBookmarked_elementsInput | No |
| connect | ElementWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutBookmarked_elementsInput | ShopUncheckedCreateWithoutBookmarked_elementsInput | No |
| connectOrCreate | ShopCreateOrConnectWithoutBookmarked_elementsInput | No |
| upsert | ShopUpsertWithoutBookmarked_elementsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ShopWhereUniqueInput | No |
| update | ShopUpdateWithoutBookmarked_elementsInput | ShopUncheckedUpdateWithoutBookmarked_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutBookmarked_elementsInput | ElementUncheckedCreateWithoutBookmarked_elementsInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutBookmarked_elementsInput | No |
| upsert | ElementUpsertWithoutBookmarked_elementsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ElementWhereUniqueInput | No |
| update | ElementUpdateWithoutBookmarked_elementsInput | ElementUncheckedUpdateWithoutBookmarked_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutRecent_used_elementsInput | ShopUncheckedCreateWithoutRecent_used_elementsInput | No |
| connectOrCreate | ShopCreateOrConnectWithoutRecent_used_elementsInput | No |
| connect | ShopWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutRecent_used_elementsInput | ElementUncheckedCreateWithoutRecent_used_elementsInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutRecent_used_elementsInput | No |
| connect | ElementWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ShopCreateWithoutRecent_used_elementsInput | ShopUncheckedCreateWithoutRecent_used_elementsInput | No |
| connectOrCreate | ShopCreateOrConnectWithoutRecent_used_elementsInput | No |
| upsert | ShopUpsertWithoutRecent_used_elementsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ShopWhereUniqueInput | No |
| update | ShopUpdateWithoutRecent_used_elementsInput | ShopUncheckedUpdateWithoutRecent_used_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ElementCreateWithoutRecent_used_elementsInput | ElementUncheckedCreateWithoutRecent_used_elementsInput | No |
| connectOrCreate | ElementCreateOrConnectWithoutRecent_used_elementsInput | No |
| upsert | ElementUpsertWithoutRecent_used_elementsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | ElementWhereUniqueInput | No |
| update | ElementUpdateWithoutRecent_used_elementsInput | ElementUncheckedUpdateWithoutRecent_used_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSupport_ticketsInput | UserUncheckedCreateWithoutSupport_ticketsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSupport_ticketsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | SupportRefType | No |
| Name | Type | Nullable |
|---|---|---|
| set | SupportCriteria | No |
| Name | Type | Nullable |
|---|---|---|
| set | SupportStatus | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | SupportLabel | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSupport_ticketsInput | UserUncheckedCreateWithoutSupport_ticketsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSupport_ticketsInput | No |
| upsert | UserUpsertWithoutSupport_ticketsInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutSupport_ticketsInput | UserUncheckedUpdateWithoutSupport_ticketsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTicket_messagesInput | UserUncheckedCreateWithoutTicket_messagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTicket_messagesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Support_TicketCreateWithoutTicket_messagesInput | Support_TicketUncheckedCreateWithoutTicket_messagesInput | No |
| connectOrCreate | Support_TicketCreateOrConnectWithoutTicket_messagesInput | No |
| connect | Support_TicketWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTicket_messagesInput | UserUncheckedCreateWithoutTicket_messagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTicket_messagesInput | No |
| upsert | UserUpsertWithoutTicket_messagesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutTicket_messagesInput | UserUncheckedUpdateWithoutTicket_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | Support_TicketCreateWithoutTicket_messagesInput | Support_TicketUncheckedCreateWithoutTicket_messagesInput | No |
| connectOrCreate | Support_TicketCreateOrConnectWithoutTicket_messagesInput | No |
| upsert | Support_TicketUpsertWithoutTicket_messagesInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | Support_TicketWhereUniqueInput | No |
| update | Support_TicketUpdateWithoutTicket_messagesInput | Support_TicketUncheckedUpdateWithoutTicket_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | ContactStatus | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTeam_membersInput | UserUncheckedCreateWithoutTeam_membersInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTeam_membersInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | TeamMemberRole | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTeam_membersInput | UserUncheckedCreateWithoutTeam_membersInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTeam_membersInput | No |
| upsert | UserUpsertWithoutTeam_membersInput | No |
| disconnect | Boolean | No |
| delete | Boolean | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateWithoutTeam_membersInput | UserUncheckedUpdateWithoutTeam_membersInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | Int | No |
| notIn | Int | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | String | No |
| notIn | String | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | String | Null | Yes |
| notIn | String | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | UserRole | No |
| in | UserRole[] | UserRole | No |
| notIn | UserRole[] | UserRole | No |
| not | UserRole | NestedEnumUserRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | Null | Yes |
| in | UserStatus[] | UserStatus | Null | Yes |
| notIn | UserStatus[] | UserStatus | Null | Yes |
| not | UserStatus | NestedEnumUserStatusNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | Null | Yes |
| not | Boolean | NestedBoolNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | DateTime | Null | Yes |
| notIn | DateTime | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | DateTime | No |
| notIn | DateTime | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Int | Null | Yes |
| notIn | Int | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | No |
| in | Int | Int | No |
| notIn | Int | Int | No |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | No |
| in | Float | Float | No |
| notIn | Float | Float | No |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | No |
| in | String | String | No |
| notIn | String | String | No |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | Null | Yes |
| in | String | String | Null | Yes |
| notIn | String | String | Null | Yes |
| lt | String | No |
| lte | String | No |
| gt | String | No |
| gte | String | No |
| contains | String | No |
| startsWith | String | No |
| endsWith | String | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserRole | No |
| in | UserRole[] | UserRole | No |
| notIn | UserRole[] | UserRole | No |
| not | UserRole | NestedEnumUserRoleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumUserRoleFilter | No |
| _max | NestedEnumUserRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserStatus | Null | Yes |
| in | UserStatus[] | UserStatus | Null | Yes |
| notIn | UserStatus[] | UserStatus | Null | Yes |
| not | UserStatus | NestedEnumUserStatusNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumUserStatusNullableFilter | No |
| _max | NestedEnumUserStatusNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | Null | Yes |
| not | Boolean | NestedBoolNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedBoolNullableFilter | No |
| _max | NestedBoolNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | Null | Yes |
| in | DateTime | DateTime | Null | Yes |
| notIn | DateTime | DateTime | Null | Yes |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | No |
| in | DateTime | DateTime | No |
| notIn | DateTime | DateTime | No |
| lt | DateTime | No |
| lte | DateTime | No |
| gt | DateTime | No |
| gte | DateTime | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | Null | Yes |
| in | Int | Int | Null | Yes |
| notIn | Int | Int | Null | Yes |
| lt | Int | No |
| lte | Int | No |
| gt | Int | No |
| gte | Int | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | Null | Yes |
| in | Float | Float | Null | Yes |
| notIn | Float | Float | Null | Yes |
| lt | Float | No |
| lte | Float | No |
| gt | Float | No |
| gte | Float | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | ShopStatus | No |
| in | ShopStatus[] | ShopStatus | No |
| notIn | ShopStatus[] | ShopStatus | No |
| not | ShopStatus | NestedEnumShopStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ShopStatus | No |
| in | ShopStatus[] | ShopStatus | No |
| notIn | ShopStatus[] | ShopStatus | No |
| not | ShopStatus | NestedEnumShopStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumShopStatusFilter | No |
| _max | NestedEnumShopStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | GenericStatus | No |
| in | GenericStatus[] | GenericStatus | No |
| notIn | GenericStatus[] | GenericStatus | No |
| not | GenericStatus | NestedEnumGenericStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ElementType | No |
| in | ElementType[] | ElementType | No |
| notIn | ElementType[] | ElementType | No |
| not | ElementType | NestedEnumElementTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | No |
| in | Decimal[] | Decimal | No |
| notIn | Decimal[] | Decimal | No |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DiscountType | Null | Yes |
| in | DiscountType[] | DiscountType | Null | Yes |
| notIn | DiscountType[] | DiscountType | Null | Yes |
| not | DiscountType | NestedEnumDiscountTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | Null | Yes |
| in | Decimal[] | Decimal | Null | Yes |
| notIn | Decimal[] | Decimal | Null | Yes |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | GenericStatus | No |
| in | GenericStatus[] | GenericStatus | No |
| notIn | GenericStatus[] | GenericStatus | No |
| not | GenericStatus | NestedEnumGenericStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumGenericStatusFilter | No |
| _max | NestedEnumGenericStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ElementType | No |
| in | ElementType[] | ElementType | No |
| notIn | ElementType[] | ElementType | No |
| not | ElementType | NestedEnumElementTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumElementTypeFilter | No |
| _max | NestedEnumElementTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | No |
| in | Decimal[] | Decimal | No |
| notIn | Decimal[] | Decimal | No |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedDecimalFilter | No |
| _sum | NestedDecimalFilter | No |
| _min | NestedDecimalFilter | No |
| _max | NestedDecimalFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DiscountType | Null | Yes |
| in | DiscountType[] | DiscountType | Null | Yes |
| notIn | DiscountType[] | DiscountType | Null | Yes |
| not | DiscountType | NestedEnumDiscountTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumDiscountTypeNullableFilter | No |
| _max | NestedEnumDiscountTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Decimal | Null | Yes |
| in | Decimal[] | Decimal | Null | Yes |
| notIn | Decimal[] | Decimal | Null | Yes |
| lt | Decimal | No |
| lte | Decimal | No |
| gt | Decimal | No |
| gte | Decimal | No |
| not | Decimal | NestedDecimalNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedDecimalNullableFilter | No |
| _sum | NestedDecimalNullableFilter | No |
| _min | NestedDecimalNullableFilter | No |
| _max | NestedDecimalNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BundleType | No |
| in | BundleType[] | BundleType | No |
| notIn | BundleType[] | BundleType | No |
| not | BundleType | NestedEnumBundleTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | BundleType | No |
| in | BundleType[] | BundleType | No |
| notIn | BundleType[] | BundleType | No |
| not | BundleType | NestedEnumBundleTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumBundleTypeFilter | No |
| _max | NestedEnumBundleTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AssetType | No |
| in | AssetType[] | AssetType | No |
| notIn | AssetType[] | AssetType | No |
| not | AssetType | NestedEnumAssetTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AssetType | No |
| in | AssetType[] | AssetType | No |
| notIn | AssetType[] | AssetType | No |
| not | AssetType | NestedEnumAssetTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAssetTypeFilter | No |
| _max | NestedEnumAssetTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderStatus | No |
| in | OrderStatus[] | OrderStatus | No |
| notIn | OrderStatus[] | OrderStatus | No |
| not | OrderStatus | NestedEnumOrderStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | OrderStatus | No |
| in | OrderStatus[] | OrderStatus | No |
| notIn | OrderStatus[] | OrderStatus | No |
| not | OrderStatus | NestedEnumOrderStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumOrderStatusFilter | No |
| _max | NestedEnumOrderStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CouponStatus | No |
| in | CouponStatus[] | CouponStatus | No |
| notIn | CouponStatus[] | CouponStatus | No |
| not | CouponStatus | NestedEnumCouponStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CouponStatus | No |
| in | CouponStatus[] | CouponStatus | No |
| notIn | CouponStatus[] | CouponStatus | No |
| not | CouponStatus | NestedEnumCouponStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumCouponStatusFilter | No |
| _max | NestedEnumCouponStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AffiliatorType | No |
| in | AffiliatorType[] | AffiliatorType | No |
| notIn | AffiliatorType[] | AffiliatorType | No |
| not | AffiliatorType | NestedEnumAffiliatorTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AffiliatorStatus | No |
| in | AffiliatorStatus[] | AffiliatorStatus | No |
| notIn | AffiliatorStatus[] | AffiliatorStatus | No |
| not | AffiliatorStatus | NestedEnumAffiliatorStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AffiliatorType | No |
| in | AffiliatorType[] | AffiliatorType | No |
| notIn | AffiliatorType[] | AffiliatorType | No |
| not | AffiliatorType | NestedEnumAffiliatorTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAffiliatorTypeFilter | No |
| _max | NestedEnumAffiliatorTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AffiliatorStatus | No |
| in | AffiliatorStatus[] | AffiliatorStatus | No |
| notIn | AffiliatorStatus[] | AffiliatorStatus | No |
| not | AffiliatorStatus | NestedEnumAffiliatorStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAffiliatorStatusFilter | No |
| _max | NestedEnumAffiliatorStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DiscountType | No |
| in | DiscountType[] | DiscountType | No |
| notIn | DiscountType[] | DiscountType | No |
| not | DiscountType | NestedEnumDiscountTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CommissionStatus | No |
| in | CommissionStatus[] | CommissionStatus | No |
| notIn | CommissionStatus[] | CommissionStatus | No |
| not | CommissionStatus | NestedEnumCommissionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DiscountType | No |
| in | DiscountType[] | DiscountType | No |
| notIn | DiscountType[] | DiscountType | No |
| not | DiscountType | NestedEnumDiscountTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumDiscountTypeFilter | No |
| _max | NestedEnumDiscountTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CommissionStatus | No |
| in | CommissionStatus[] | CommissionStatus | No |
| notIn | CommissionStatus[] | CommissionStatus | No |
| not | CommissionStatus | NestedEnumCommissionStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumCommissionStatusFilter | No |
| _max | NestedEnumCommissionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CommissionWithdrawStatus | No |
| in | CommissionWithdrawStatus[] | CommissionWithdrawStatus | No |
| notIn | CommissionWithdrawStatus[] | CommissionWithdrawStatus | No |
| not | CommissionWithdrawStatus | NestedEnumCommissionWithdrawStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PaymentMethod | No |
| in | PaymentMethod[] | PaymentMethod | No |
| notIn | PaymentMethod[] | PaymentMethod | No |
| not | PaymentMethod | NestedEnumPaymentMethodFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | CommissionWithdrawStatus | No |
| in | CommissionWithdrawStatus[] | CommissionWithdrawStatus | No |
| notIn | CommissionWithdrawStatus[] | CommissionWithdrawStatus | No |
| not | CommissionWithdrawStatus | NestedEnumCommissionWithdrawStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumCommissionWithdrawStatusFilter | No |
| _max | NestedEnumCommissionWithdrawStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PaymentMethod | No |
| in | PaymentMethod[] | PaymentMethod | No |
| notIn | PaymentMethod[] | PaymentMethod | No |
| not | PaymentMethod | NestedEnumPaymentMethodWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPaymentMethodFilter | No |
| _max | NestedEnumPaymentMethodFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Json | JsonNullValueFilter | No |
| path | String | No |
| string_contains | String | No |
| string_starts_with | String | No |
| string_ends_with | String | No |
| array_contains | Json | Null | Yes |
| array_starts_with | Json | Null | Yes |
| array_ends_with | Json | Null | Yes |
| lt | Json | No |
| lte | Json | No |
| gt | Json | No |
| gte | Json | No |
| not | Json | JsonNullValueFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PricingPlanType | No |
| in | PricingPlanType[] | PricingPlanType | No |
| notIn | PricingPlanType[] | PricingPlanType | No |
| not | PricingPlanType | NestedEnumPricingPlanTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | PricingPlanType | No |
| in | PricingPlanType[] | PricingPlanType | No |
| notIn | PricingPlanType[] | PricingPlanType | No |
| not | PricingPlanType | NestedEnumPricingPlanTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumPricingPlanTypeFilter | No |
| _max | NestedEnumPricingPlanTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SubscriptionStatus | No |
| in | SubscriptionStatus[] | SubscriptionStatus | No |
| notIn | SubscriptionStatus[] | SubscriptionStatus | No |
| not | SubscriptionStatus | NestedEnumSubscriptionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SubscriptionEndedType | Null | Yes |
| in | SubscriptionEndedType[] | SubscriptionEndedType | Null | Yes |
| notIn | SubscriptionEndedType[] | SubscriptionEndedType | Null | Yes |
| not | SubscriptionEndedType | NestedEnumSubscriptionEndedTypeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | SubscriptionStatus | No |
| in | SubscriptionStatus[] | SubscriptionStatus | No |
| notIn | SubscriptionStatus[] | SubscriptionStatus | No |
| not | SubscriptionStatus | NestedEnumSubscriptionStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumSubscriptionStatusFilter | No |
| _max | NestedEnumSubscriptionStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SubscriptionEndedType | Null | Yes |
| in | SubscriptionEndedType[] | SubscriptionEndedType | Null | Yes |
| notIn | SubscriptionEndedType[] | SubscriptionEndedType | Null | Yes |
| not | SubscriptionEndedType | NestedEnumSubscriptionEndedTypeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumSubscriptionEndedTypeNullableFilter | No |
| _max | NestedEnumSubscriptionEndedTypeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FaqStatus | No |
| in | FaqStatus[] | FaqStatus | No |
| notIn | FaqStatus[] | FaqStatus | No |
| not | FaqStatus | NestedEnumFaqStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | FaqStatus | No |
| in | FaqStatus[] | FaqStatus | No |
| notIn | FaqStatus[] | FaqStatus | No |
| not | FaqStatus | NestedEnumFaqStatusWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumFaqStatusFilter | No |
| _max | NestedEnumFaqStatusFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AttachmentType | No |
| in | AttachmentType[] | AttachmentType | No |
| notIn | AttachmentType[] | AttachmentType | No |
| not | AttachmentType | NestedEnumAttachmentTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AttachmentRefType | No |
| in | AttachmentRefType[] | AttachmentRefType | No |
| notIn | AttachmentRefType[] | AttachmentRefType | No |
| not | AttachmentRefType | NestedEnumAttachmentRefTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AttachmentType | No |
| in | AttachmentType[] | AttachmentType | No |
| notIn | AttachmentType[] | AttachmentType | No |
| not | AttachmentType | NestedEnumAttachmentTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAttachmentTypeFilter | No |
| _max | NestedEnumAttachmentTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | AttachmentRefType | No |
| in | AttachmentRefType[] | AttachmentRefType | No |
| notIn | AttachmentRefType[] | AttachmentRefType | No |
| not | AttachmentRefType | NestedEnumAttachmentRefTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumAttachmentRefTypeFilter | No |
| _max | NestedEnumAttachmentRefTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportRefType | No |
| in | SupportRefType[] | SupportRefType | No |
| notIn | SupportRefType[] | SupportRefType | No |
| not | SupportRefType | NestedEnumSupportRefTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportCriteria | No |
| in | SupportCriteria[] | SupportCriteria | No |
| notIn | SupportCriteria[] | SupportCriteria | No |
| not | SupportCriteria | NestedEnumSupportCriteriaFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportStatus | Null | Yes |
| in | SupportStatus[] | SupportStatus | Null | Yes |
| notIn | SupportStatus[] | SupportStatus | Null | Yes |
| not | SupportStatus | NestedEnumSupportStatusNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportLabel | Null | Yes |
| in | SupportLabel[] | SupportLabel | Null | Yes |
| notIn | SupportLabel[] | SupportLabel | Null | Yes |
| not | SupportLabel | NestedEnumSupportLabelNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportRefType | No |
| in | SupportRefType[] | SupportRefType | No |
| notIn | SupportRefType[] | SupportRefType | No |
| not | SupportRefType | NestedEnumSupportRefTypeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumSupportRefTypeFilter | No |
| _max | NestedEnumSupportRefTypeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportCriteria | No |
| in | SupportCriteria[] | SupportCriteria | No |
| notIn | SupportCriteria[] | SupportCriteria | No |
| not | SupportCriteria | NestedEnumSupportCriteriaWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumSupportCriteriaFilter | No |
| _max | NestedEnumSupportCriteriaFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportStatus | Null | Yes |
| in | SupportStatus[] | SupportStatus | Null | Yes |
| notIn | SupportStatus[] | SupportStatus | Null | Yes |
| not | SupportStatus | NestedEnumSupportStatusNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumSupportStatusNullableFilter | No |
| _max | NestedEnumSupportStatusNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | SupportLabel | Null | Yes |
| in | SupportLabel[] | SupportLabel | Null | Yes |
| notIn | SupportLabel[] | SupportLabel | Null | Yes |
| not | SupportLabel | NestedEnumSupportLabelNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumSupportLabelNullableFilter | No |
| _max | NestedEnumSupportLabelNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | ContactStatus | Null | Yes |
| in | ContactStatus[] | ContactStatus | Null | Yes |
| notIn | ContactStatus[] | ContactStatus | Null | Yes |
| not | ContactStatus | NestedEnumContactStatusNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | ContactStatus | Null | Yes |
| in | ContactStatus[] | ContactStatus | Null | Yes |
| notIn | ContactStatus[] | ContactStatus | Null | Yes |
| not | ContactStatus | NestedEnumContactStatusNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedEnumContactStatusNullableFilter | No |
| _max | NestedEnumContactStatusNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TeamMemberRole | No |
| in | TeamMemberRole[] | TeamMemberRole | No |
| notIn | TeamMemberRole[] | TeamMemberRole | No |
| not | TeamMemberRole | NestedEnumTeamMemberRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | TeamMemberRole | No |
| in | TeamMemberRole[] | TeamMemberRole | No |
| notIn | TeamMemberRole[] | TeamMemberRole | No |
| not | TeamMemberRole | NestedEnumTeamMemberRoleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumTeamMemberRoleFilter | No |
| _max | NestedEnumTeamMemberRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| current_subscription | Shop_SubscriptionCreateNestedOneWithoutShopsInput | No |
| orders | OrderCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| subscription_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| orders | OrderUncheckedCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopWhereUniqueInput | No |
| create | ShopCreateWithoutUserInput | ShopUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ShopCreateManyUserInput | ShopCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| elements | Bundle_ElementCreateNestedManyWithoutBundleInput | No |
| images | Bundle_ImageCreateNestedManyWithoutBundleInput | No |
| categories | Bundle_CategoryCreateNestedManyWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| elements | Bundle_ElementUncheckedCreateNestedManyWithoutBundleInput | No |
| images | Bundle_ImageUncheckedCreateNestedManyWithoutBundleInput | No |
| categories | Bundle_CategoryUncheckedCreateNestedManyWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BundleWhereUniqueInput | No |
| create | BundleCreateWithoutUserInput | BundleUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BundleCreateManyUserInput | BundleCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| status | GenericStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| bundle | BundleCreateNestedOneWithoutElementsInput | No |
| element | ElementCreateNestedOneWithoutBundlesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| status | GenericStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | No |
| create | Bundle_ElementCreateWithoutUserInput | Bundle_ElementUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Bundle_ElementCreateManyUserInput | Bundle_ElementCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| images | Element_ImageCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseCreateNestedManyWithoutElementInput | No |
| tags | Element_TagCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| images | Element_ImageUncheckedCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseUncheckedCreateNestedManyWithoutElementInput | No |
| tags | Element_TagUncheckedCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryUncheckedCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ElementWhereUniqueInput | No |
| create | ElementCreateWithoutUserInput | ElementUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ElementCreateManyUserInput | ElementCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| yearly_discounted_price | Decimal | Null | Yes |
| trial_period | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| subscriptions | Shop_SubscriptionCreateNestedManyWithoutPlanInput | No |
| pricing_plan_features | Pricing_Plan_FeatureCreateNestedManyWithoutPricing_planInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| yearly_discounted_price | Decimal | Null | Yes |
| trial_period | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| subscriptions | Shop_SubscriptionUncheckedCreateNestedManyWithoutPlanInput | No |
| pricing_plan_features | Pricing_Plan_FeatureUncheckedCreateNestedManyWithoutPricing_planInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Pricing_PlanWhereUniqueInput | No |
| create | Pricing_PlanCreateWithoutUserInput | Pricing_PlanUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Pricing_PlanCreateManyUserInput | Pricing_PlanCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | No |
| answer | String | No |
| status | FaqStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| category | Faq_CategoryCreateNestedOneWithoutFaqsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| question | String | No |
| answer | String | No |
| status | FaqStatus | No |
| category_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FaqWhereUniqueInput | No |
| create | FaqCreateWithoutUserInput | FaqUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FaqCreateManyUserInput | FaqCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| description | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| faqs | FaqCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| description | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| faqs | FaqUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Faq_CategoryWhereUniqueInput | No |
| create | Faq_CategoryCreateWithoutUserInput | Faq_CategoryUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Faq_CategoryCreateManyUserInput | Faq_CategoryCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| element_categories | Element_CategoryCreateNestedManyWithoutCategoryInput | No |
| bundle_categories | Bundle_CategoryCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| element_categories | Element_CategoryUncheckedCreateNestedManyWithoutCategoryInput | No |
| bundle_categories | Bundle_CategoryUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutUserInput | CategoryUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CategoryCreateManyUserInput | CategoryCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| elements | Element_TagCreateNestedManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| elements | Element_TagUncheckedCreateNestedManyWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TagWhereUniqueInput | No |
| create | TagCreateWithoutUserInput | TagUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TagCreateManyUserInput | TagCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| ref_id | Int | No |
| ref_type | SupportRefType | No |
| criteria | SupportCriteria | No |
| reason | String | No |
| description | String | No |
| status | SupportStatus | Null | Yes |
| label | SupportLabel | Null | Yes |
| assignee | Int | Null | Yes |
| assigned_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutSupport_ticketInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| ref_id | Int | No |
| ref_type | SupportRefType | No |
| criteria | SupportCriteria | No |
| reason | String | No |
| description | String | No |
| status | SupportStatus | Null | Yes |
| label | SupportLabel | Null | Yes |
| assignee | Int | Null | Yes |
| assigned_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| ticket_messages | Ticket_MessageUncheckedCreateNestedManyWithoutSupport_ticketInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Support_TicketWhereUniqueInput | No |
| create | Support_TicketCreateWithoutUserInput | Support_TicketUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Support_TicketCreateManyUserInput | Support_TicketCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| message | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| support_ticket | Support_TicketCreateNestedOneWithoutTicket_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| ticket_id | Int | No |
| message | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Ticket_MessageWhereUniqueInput | No |
| create | Ticket_MessageCreateWithoutUserInput | Ticket_MessageUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Ticket_MessageCreateManyUserInput | Ticket_MessageCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAffiliatorInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutAffiliatorInput | No |
| coupons | CouponCreateNestedManyWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| coupons | CouponUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AffiliatorWhereUniqueInput | No |
| create | AffiliatorCreateWithoutUserInput | AffiliatorUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AffiliatorCreateManyUserInput | AffiliatorCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| affiliator | AffiliatorCreateNestedOneWithoutAffiliator_commissionsInput | No |
| order | OrderCreateNestedOneWithoutAffiliator_commissionsInput | No |
| shop | ShopCreateNestedOneWithoutAffiliator_commissionsInput | No |
| coupon | CouponCreateNestedOneWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| order_id | Int | Null | Yes |
| shop_id | Int | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | No |
| create | Affiliator_CommissionCreateWithoutUserInput | Affiliator_CommissionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Affiliator_CommissionCreateManyUserInput | Affiliator_CommissionCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| affiliator | AffiliatorCreateNestedOneWithoutAffiliator_withdraw_requestsInput | No |
| payment_method_detail | User_Pament_MethodCreateNestedOneWithoutAffiliator_withdraw_requestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method_id | Int | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_Withdraw_RequestWhereUniqueInput | No |
| create | Affiliator_Withdraw_RequestCreateWithoutAssigned_userInput | Affiliator_Withdraw_RequestUncheckedCreateWithoutAssigned_userInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Affiliator_Withdraw_RequestCreateManyAssigned_userInput | Affiliator_Withdraw_RequestCreateManyAssigned_userInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| affiliator | AffiliatorCreateNestedOneWithoutCouponsInput | No |
| orders | OrderCreateNestedManyWithoutCouponInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| affiliated_by | Int | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| orders | OrderUncheckedCreateNestedManyWithoutCouponInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CouponWhereUniqueInput | No |
| create | CouponCreateWithoutUserInput | CouponUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CouponCreateManyUserInput | CouponCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| method | PaymentMethod | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutPayment_method_detailInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| method | PaymentMethod | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutPayment_method_detailInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | User_Pament_MethodWhereUniqueInput | No |
| create | User_Pament_MethodCreateWithoutUserInput | User_Pament_MethodUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | User_Pament_MethodCreateManyUserInput | User_Pament_MethodCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| role | TeamMemberRole | No |
| designation | String | Null | Yes |
| badge | String | Null | Yes |
| invited_by | Int | Null | Yes |
| onboarded_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| role | TeamMemberRole | No |
| designation | String | Null | Yes |
| badge | String | Null | Yes |
| invited_by | Int | Null | Yes |
| onboarded_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Team_MemberWhereUniqueInput | No |
| create | Team_MemberCreateWithoutUserInput | Team_MemberUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Team_MemberCreateManyUserInput | Team_MemberCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopWhereUniqueInput | No |
| update | ShopUpdateWithoutUserInput | ShopUncheckedUpdateWithoutUserInput | No |
| create | ShopCreateWithoutUserInput | ShopUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopWhereUniqueInput | No |
| data | ShopUpdateWithoutUserInput | ShopUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopScalarWhereInput | No |
| data | ShopUpdateManyMutationInput | ShopUncheckedUpdateManyWithoutShopsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ShopScalarWhereInput | ShopScalarWhereInput[] | No |
| OR | ShopScalarWhereInput[] | No |
| NOT | ShopScalarWhereInput | ShopScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| uuid | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| shopify_shop_id | IntFilter | Int | No |
| name | StringFilter | String | No |
| domain | StringFilter | String | No |
| status | EnumShopStatusFilter | ShopStatus | No |
| subscription_id | IntNullableFilter | Int | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | BundleWhereUniqueInput | No |
| update | BundleUpdateWithoutUserInput | BundleUncheckedUpdateWithoutUserInput | No |
| create | BundleCreateWithoutUserInput | BundleUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BundleWhereUniqueInput | No |
| data | BundleUpdateWithoutUserInput | BundleUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BundleScalarWhereInput | No |
| data | BundleUpdateManyMutationInput | BundleUncheckedUpdateManyWithoutBundlesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BundleScalarWhereInput | BundleScalarWhereInput[] | No |
| OR | BundleScalarWhereInput[] | No |
| NOT | BundleScalarWhereInput | BundleScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| slug | StringFilter | String | No |
| description | StringFilter | String | No |
| featured_image | StringFilter | String | No |
| status | EnumGenericStatusFilter | GenericStatus | No |
| type | EnumBundleTypeFilter | BundleType | No |
| is_auto_price | BoolNullableFilter | Boolean | Null | Yes |
| price | DecimalFilter | Decimal | No |
| discount_type | EnumDiscountTypeNullableFilter | DiscountType | Null | Yes |
| discount_value | DecimalNullableFilter | Decimal | Null | Yes |
| demo_url | StringNullableFilter | String | Null | Yes |
| video_url | StringNullableFilter | String | Null | Yes |
| version | StringNullableFilter | String | Null | Yes |
| user_id | IntFilter | Int | No |
| view_count | IntNullableFilter | Int | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | No |
| update | Bundle_ElementUpdateWithoutUserInput | Bundle_ElementUncheckedUpdateWithoutUserInput | No |
| create | Bundle_ElementCreateWithoutUserInput | Bundle_ElementUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | No |
| data | Bundle_ElementUpdateWithoutUserInput | Bundle_ElementUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementScalarWhereInput | No |
| data | Bundle_ElementUpdateManyMutationInput | Bundle_ElementUncheckedUpdateManyWithoutBundle_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Bundle_ElementScalarWhereInput | Bundle_ElementScalarWhereInput[] | No |
| OR | Bundle_ElementScalarWhereInput[] | No |
| NOT | Bundle_ElementScalarWhereInput | Bundle_ElementScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| bundle_id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| element_type | EnumElementTypeFilter | ElementType | No |
| status | EnumGenericStatusFilter | GenericStatus | No |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | ElementWhereUniqueInput | No |
| update | ElementUpdateWithoutUserInput | ElementUncheckedUpdateWithoutUserInput | No |
| create | ElementCreateWithoutUserInput | ElementUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ElementWhereUniqueInput | No |
| data | ElementUpdateWithoutUserInput | ElementUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ElementScalarWhereInput | No |
| data | ElementUpdateManyMutationInput | ElementUncheckedUpdateManyWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ElementScalarWhereInput | ElementScalarWhereInput[] | No |
| OR | ElementScalarWhereInput[] | No |
| NOT | ElementScalarWhereInput | ElementScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| slug | StringFilter | String | No |
| description | StringFilter | String | No |
| featured_image | StringFilter | String | No |
| content | StringFilter | String | No |
| file_name | StringFilter | String | No |
| status | EnumGenericStatusFilter | GenericStatus | No |
| type | EnumElementTypeFilter | ElementType | No |
| price | DecimalFilter | Decimal | No |
| discount_type | EnumDiscountTypeNullableFilter | DiscountType | Null | Yes |
| discount_value | DecimalNullableFilter | Decimal | Null | Yes |
| demo_url | StringNullableFilter | String | Null | Yes |
| video_url | StringNullableFilter | String | Null | Yes |
| version | StringNullableFilter | String | Null | Yes |
| user_id | IntFilter | Int | No |
| wishlisted_count | IntNullableFilter | Int | Null | Yes |
| bookmarked_count | IntNullableFilter | Int | Null | Yes |
| added_theme_count | IntNullableFilter | Int | Null | Yes |
| view_count | IntNullableFilter | Int | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Pricing_PlanWhereUniqueInput | No |
| update | Pricing_PlanUpdateWithoutUserInput | Pricing_PlanUncheckedUpdateWithoutUserInput | No |
| create | Pricing_PlanCreateWithoutUserInput | Pricing_PlanUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Pricing_PlanWhereUniqueInput | No |
| data | Pricing_PlanUpdateWithoutUserInput | Pricing_PlanUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Pricing_PlanScalarWhereInput | No |
| data | Pricing_PlanUpdateManyMutationInput | Pricing_PlanUncheckedUpdateManyWithoutPricing_plansInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Pricing_PlanScalarWhereInput | Pricing_PlanScalarWhereInput[] | No |
| OR | Pricing_PlanScalarWhereInput[] | No |
| NOT | Pricing_PlanScalarWhereInput | Pricing_PlanScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| tagline | StringFilter | String | No |
| description | StringFilter | String | No |
| type | EnumPricingPlanTypeFilter | PricingPlanType | No |
| is_recommended | BoolFilter | Boolean | No |
| is_popular | BoolFilter | Boolean | No |
| price | DecimalFilter | Decimal | No |
| discounted_price | DecimalNullableFilter | Decimal | Null | Yes |
| yearly_discounted_price | DecimalNullableFilter | Decimal | Null | Yes |
| trial_period | IntNullableFilter | Int | Null | Yes |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FaqWhereUniqueInput | No |
| update | FaqUpdateWithoutUserInput | FaqUncheckedUpdateWithoutUserInput | No |
| create | FaqCreateWithoutUserInput | FaqUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FaqWhereUniqueInput | No |
| data | FaqUpdateWithoutUserInput | FaqUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FaqScalarWhereInput | No |
| data | FaqUpdateManyMutationInput | FaqUncheckedUpdateManyWithoutFaqsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FaqScalarWhereInput | FaqScalarWhereInput[] | No |
| OR | FaqScalarWhereInput[] | No |
| NOT | FaqScalarWhereInput | FaqScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| user_id | IntFilter | Int | No |
| question | StringFilter | String | No |
| answer | StringFilter | String | No |
| status | EnumFaqStatusFilter | FaqStatus | No |
| category_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Faq_CategoryWhereUniqueInput | No |
| update | Faq_CategoryUpdateWithoutUserInput | Faq_CategoryUncheckedUpdateWithoutUserInput | No |
| create | Faq_CategoryCreateWithoutUserInput | Faq_CategoryUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Faq_CategoryWhereUniqueInput | No |
| data | Faq_CategoryUpdateWithoutUserInput | Faq_CategoryUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Faq_CategoryScalarWhereInput | No |
| data | Faq_CategoryUpdateManyMutationInput | Faq_CategoryUncheckedUpdateManyWithoutFaq_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Faq_CategoryScalarWhereInput | Faq_CategoryScalarWhereInput[] | No |
| OR | Faq_CategoryScalarWhereInput[] | No |
| NOT | Faq_CategoryScalarWhereInput | Faq_CategoryScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| description | StringNullableFilter | String | Null | Yes |
| banner | StringNullableFilter | String | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| update | CategoryUpdateWithoutUserInput | CategoryUncheckedUpdateWithoutUserInput | No |
| create | CategoryCreateWithoutUserInput | CategoryUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| data | CategoryUpdateWithoutUserInput | CategoryUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryScalarWhereInput | No |
| data | CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| OR | CategoryScalarWhereInput[] | No |
| NOT | CategoryScalarWhereInput | CategoryScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| slug | StringFilter | String | No |
| description | StringNullableFilter | String | Null | Yes |
| type | EnumAssetTypeFilter | AssetType | No |
| status | EnumGenericStatusFilter | GenericStatus | No |
| image | StringNullableFilter | String | Null | Yes |
| banner | StringNullableFilter | String | Null | Yes |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TagWhereUniqueInput | No |
| update | TagUpdateWithoutUserInput | TagUncheckedUpdateWithoutUserInput | No |
| create | TagCreateWithoutUserInput | TagUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TagWhereUniqueInput | No |
| data | TagUpdateWithoutUserInput | TagUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TagScalarWhereInput | No |
| data | TagUpdateManyMutationInput | TagUncheckedUpdateManyWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TagScalarWhereInput | TagScalarWhereInput[] | No |
| OR | TagScalarWhereInput[] | No |
| NOT | TagScalarWhereInput | TagScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| name | StringFilter | String | No |
| slug | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| description | StringNullableFilter | String | Null | Yes |
| image | StringNullableFilter | String | Null | Yes |
| banner | StringNullableFilter | String | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Support_TicketWhereUniqueInput | No |
| update | Support_TicketUpdateWithoutUserInput | Support_TicketUncheckedUpdateWithoutUserInput | No |
| create | Support_TicketCreateWithoutUserInput | Support_TicketUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Support_TicketWhereUniqueInput | No |
| data | Support_TicketUpdateWithoutUserInput | Support_TicketUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Support_TicketScalarWhereInput | No |
| data | Support_TicketUpdateManyMutationInput | Support_TicketUncheckedUpdateManyWithoutSupport_ticketsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Support_TicketScalarWhereInput | Support_TicketScalarWhereInput[] | No |
| OR | Support_TicketScalarWhereInput[] | No |
| NOT | Support_TicketScalarWhereInput | Support_TicketScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| uuid | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| ref_id | IntFilter | Int | No |
| ref_type | EnumSupportRefTypeFilter | SupportRefType | No |
| criteria | EnumSupportCriteriaFilter | SupportCriteria | No |
| reason | StringFilter | String | No |
| description | StringFilter | String | No |
| status | EnumSupportStatusNullableFilter | SupportStatus | Null | Yes |
| label | EnumSupportLabelNullableFilter | SupportLabel | Null | Yes |
| assignee | IntNullableFilter | Int | Null | Yes |
| assigned_at | DateTimeNullableFilter | DateTime | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Ticket_MessageWhereUniqueInput | No |
| update | Ticket_MessageUpdateWithoutUserInput | Ticket_MessageUncheckedUpdateWithoutUserInput | No |
| create | Ticket_MessageCreateWithoutUserInput | Ticket_MessageUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Ticket_MessageWhereUniqueInput | No |
| data | Ticket_MessageUpdateWithoutUserInput | Ticket_MessageUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Ticket_MessageScalarWhereInput | No |
| data | Ticket_MessageUpdateManyMutationInput | Ticket_MessageUncheckedUpdateManyWithoutTicket_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Ticket_MessageScalarWhereInput | Ticket_MessageScalarWhereInput[] | No |
| OR | Ticket_MessageScalarWhereInput[] | No |
| NOT | Ticket_MessageScalarWhereInput | Ticket_MessageScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| ticket_id | IntFilter | Int | No |
| user_id | IntFilter | Int | No |
| message | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | AffiliatorWhereUniqueInput | No |
| update | AffiliatorUpdateWithoutUserInput | AffiliatorUncheckedUpdateWithoutUserInput | No |
| create | AffiliatorCreateWithoutUserInput | AffiliatorUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AffiliatorWhereUniqueInput | No |
| data | AffiliatorUpdateWithoutUserInput | AffiliatorUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AffiliatorScalarWhereInput | No |
| data | AffiliatorUpdateManyMutationInput | AffiliatorUncheckedUpdateManyWithoutAffiliatorsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AffiliatorScalarWhereInput | AffiliatorScalarWhereInput[] | No |
| OR | AffiliatorScalarWhereInput[] | No |
| NOT | AffiliatorScalarWhereInput | AffiliatorScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| uuid | StringFilter | String | No |
| user_id | IntFilter | Int | No |
| invited_by | IntNullableFilter | Int | Null | Yes |
| type | EnumAffiliatorTypeFilter | AffiliatorType | No |
| type_other | StringNullableFilter | String | Null | Yes |
| status | EnumAffiliatorStatusFilter | AffiliatorStatus | No |
| total_earned | DecimalNullableFilter | Decimal | Null | Yes |
| total_paid | DecimalNullableFilter | Decimal | Null | Yes |
| current_coupon_id | IntNullableFilter | Int | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | No |
| data | Affiliator_CommissionUpdateWithoutUserInput | Affiliator_CommissionUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionScalarWhereInput | No |
| data | Affiliator_CommissionUpdateManyMutationInput | Affiliator_CommissionUncheckedUpdateManyWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Affiliator_Withdraw_RequestScalarWhereInput | Affiliator_Withdraw_RequestScalarWhereInput[] | No |
| OR | Affiliator_Withdraw_RequestScalarWhereInput[] | No |
| NOT | Affiliator_Withdraw_RequestScalarWhereInput | Affiliator_Withdraw_RequestScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| uuid | StringFilter | String | No |
| affiliator_id | IntFilter | Int | No |
| status | EnumCommissionWithdrawStatusFilter | CommissionWithdrawStatus | No |
| amount | DecimalFilter | Decimal | No |
| payment_method_id | IntFilter | Int | No |
| payment_method | EnumPaymentMethodFilter | PaymentMethod | No |
| payment_method_details | JsonFilter | No |
| assignee | IntNullableFilter | Int | Null | Yes |
| note | StringNullableFilter | String | Null | Yes |
| reject_reason | StringNullableFilter | String | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | CouponWhereUniqueInput | No |
| update | CouponUpdateWithoutUserInput | CouponUncheckedUpdateWithoutUserInput | No |
| create | CouponCreateWithoutUserInput | CouponUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CouponWhereUniqueInput | No |
| data | CouponUpdateWithoutUserInput | CouponUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CouponScalarWhereInput | No |
| data | CouponUpdateManyMutationInput | CouponUncheckedUpdateManyWithoutCouponsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CouponScalarWhereInput | CouponScalarWhereInput[] | No |
| OR | CouponScalarWhereInput[] | No |
| NOT | CouponScalarWhereInput | CouponScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| code | StringFilter | String | No |
| status | EnumCouponStatusFilter | CouponStatus | No |
| expired_at | DateTimeNullableFilter | DateTime | Null | Yes |
| max_total_applied | IntNullableFilter | Int | Null | Yes |
| max_applied_by_shop | IntNullableFilter | Int | Null | Yes |
| discount_type | EnumDiscountTypeNullableFilter | DiscountType | Null | Yes |
| discount_value | DecimalNullableFilter | Decimal | Null | Yes |
| min_order_amount | DecimalNullableFilter | Decimal | Null | Yes |
| max_discount_limit | DecimalNullableFilter | Decimal | Null | Yes |
| is_apply_on_asset_discount | BoolNullableFilter | Boolean | Null | Yes |
| affiliated_by | IntNullableFilter | Int | Null | Yes |
| commission_type | EnumDiscountTypeNullableFilter | DiscountType | Null | Yes |
| commission_value | DecimalNullableFilter | Decimal | Null | Yes |
| user_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| deleted_by | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | User_Pament_MethodWhereUniqueInput | No |
| update | User_Pament_MethodUpdateWithoutUserInput | User_Pament_MethodUncheckedUpdateWithoutUserInput | No |
| create | User_Pament_MethodCreateWithoutUserInput | User_Pament_MethodUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | User_Pament_MethodWhereUniqueInput | No |
| data | User_Pament_MethodUpdateWithoutUserInput | User_Pament_MethodUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | User_Pament_MethodScalarWhereInput | No |
| data | User_Pament_MethodUpdateManyMutationInput | User_Pament_MethodUncheckedUpdateManyWithoutUser_pament_methodsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | User_Pament_MethodScalarWhereInput | User_Pament_MethodScalarWhereInput[] | No |
| OR | User_Pament_MethodScalarWhereInput[] | No |
| NOT | User_Pament_MethodScalarWhereInput | User_Pament_MethodScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| user_id | IntFilter | Int | No |
| method | EnumPaymentMethodFilter | PaymentMethod | No |
| details | JsonFilter | No |
| is_default | BoolFilter | Boolean | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| deleted_at | DateTimeNullableFilter | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Team_MemberWhereUniqueInput | No |
| update | Team_MemberUpdateWithoutUserInput | Team_MemberUncheckedUpdateWithoutUserInput | No |
| create | Team_MemberCreateWithoutUserInput | Team_MemberUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Team_MemberWhereUniqueInput | No |
| data | Team_MemberUpdateWithoutUserInput | Team_MemberUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Team_MemberScalarWhereInput | No |
| data | Team_MemberUpdateManyMutationInput | Team_MemberUncheckedUpdateManyWithoutTeam_membersInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Team_MemberScalarWhereInput | Team_MemberScalarWhereInput[] | No |
| OR | Team_MemberScalarWhereInput[] | No |
| NOT | Team_MemberScalarWhereInput | Team_MemberScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| user_id | IntFilter | Int | No |
| role | EnumTeamMemberRoleFilter | TeamMemberRole | No |
| designation | StringNullableFilter | String | Null | Yes |
| badge | StringNullableFilter | String | Null | Yes |
| invited_by | IntNullableFilter | Int | Null | Yes |
| onboarded_at | DateTimeNullableFilter | DateTime | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutShopsInput | UserUncheckedCreateWithoutShopsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| shop_id | Int | No |
| plan_type | PricingPlanType | No |
| status | SubscriptionStatus | No |
| created_at | DateTime | No |
| ended_at | DateTime | Null | Yes |
| ended_type | SubscriptionEndedType | Null | Yes |
| updated_at | DateTime | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| plan | Pricing_PlanCreateNestedOneWithoutSubscriptionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| plan_id | Int | No |
| plan_type | PricingPlanType | No |
| status | SubscriptionStatus | No |
| created_at | DateTime | No |
| ended_at | DateTime | Null | Yes |
| ended_type | SubscriptionEndedType | Null | Yes |
| updated_at | DateTime | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| Name | Type | Nullable |
|---|---|---|
| where | Shop_SubscriptionWhereUniqueInput | No |
| create | Shop_SubscriptionCreateWithoutShopsInput | Shop_SubscriptionUncheckedCreateWithoutShopsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| coupon | CouponCreateNestedOneWithoutOrdersInput | No |
| order_items | Order_ItemCreateNestedManyWithoutOrderInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| order_items | Order_ItemUncheckedCreateNestedManyWithoutOrderInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutShopInput | OrderUncheckedCreateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrderCreateManyShopInput | OrderCreateManyShopInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| created_at | DateTime | No |
| element | ElementCreateNestedOneWithoutBookmarked_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| create | BookmarkCreateWithoutShopInput | BookmarkUncheckedCreateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BookmarkCreateManyShopInput | BookmarkCreateManyShopInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| created_at | DateTime | No |
| element | ElementCreateNestedOneWithoutWishlisted_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | WishlistWhereUniqueInput | No |
| create | WishlistCreateWithoutShopInput | WishlistUncheckedCreateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | WishlistCreateManyShopInput | WishlistCreateManyShopInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| created_at | DateTime | No |
| element | ElementCreateNestedOneWithoutRecent_used_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Recent_Used_ElementWhereUniqueInput | No |
| create | Recent_Used_ElementCreateWithoutShopInput | Recent_Used_ElementUncheckedCreateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Recent_Used_ElementCreateManyShopInput | Recent_Used_ElementCreateManyShopInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| affiliator | AffiliatorCreateNestedOneWithoutAffiliator_commissionsInput | No |
| user | UserCreateNestedOneWithoutAffiliator_commissionsInput | No |
| order | OrderCreateNestedOneWithoutAffiliator_commissionsInput | No |
| coupon | CouponCreateNestedOneWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| user_id | Int | No |
| order_id | Int | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | No |
| create | Affiliator_CommissionCreateWithoutShopInput | Affiliator_CommissionUncheckedCreateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Affiliator_CommissionCreateManyShopInput | Affiliator_CommissionCreateManyShopInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutShopsInput | UserUncheckedUpdateWithoutShopsInput | No |
| create | UserCreateWithoutShopsInput | UserUncheckedCreateWithoutShopsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | Shop_SubscriptionUpdateWithoutShopsInput | Shop_SubscriptionUncheckedUpdateWithoutShopsInput | No |
| create | Shop_SubscriptionCreateWithoutShopsInput | Shop_SubscriptionUncheckedCreateWithoutShopsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| plan_type | PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput | No |
| status | SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| ended_type | SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| plan | Pricing_PlanUpdateOneWithoutSubscriptionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| plan_id | Int | IntFieldUpdateOperationsInput | No |
| plan_type | PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput | No |
| status | SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| ended_type | SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| update | OrderUpdateWithoutShopInput | OrderUncheckedUpdateWithoutShopInput | No |
| create | OrderCreateWithoutShopInput | OrderUncheckedCreateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| data | OrderUpdateWithoutShopInput | OrderUncheckedUpdateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderScalarWhereInput | No |
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrdersInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| OR | OrderScalarWhereInput[] | No |
| NOT | OrderScalarWhereInput | OrderScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| uuid | StringFilter | String | No |
| shop_id | IntFilter | Int | No |
| asset_type | EnumAssetTypeFilter | AssetType | No |
| status | EnumOrderStatusFilter | OrderStatus | No |
| sub_total | DecimalFilter | Decimal | No |
| discounted_amout | DecimalNullableFilter | Decimal | Null | Yes |
| coupon_id | IntNullableFilter | Int | Null | Yes |
| coupon_code | StringNullableFilter | String | Null | Yes |
| coupon_discount_type | EnumDiscountTypeNullableFilter | DiscountType | Null | Yes |
| coupon_discount_value | DecimalNullableFilter | Decimal | Null | Yes |
| grand_total | DecimalFilter | Decimal | No |
| affiliated_by | IntNullableFilter | Int | Null | Yes |
| affiliated_commission | DecimalNullableFilter | Decimal | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| update | BookmarkUpdateWithoutShopInput | BookmarkUncheckedUpdateWithoutShopInput | No |
| create | BookmarkCreateWithoutShopInput | BookmarkUncheckedCreateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| data | BookmarkUpdateWithoutShopInput | BookmarkUncheckedUpdateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkScalarWhereInput | No |
| data | BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyWithoutBookmarked_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookmarkScalarWhereInput | BookmarkScalarWhereInput[] | No |
| OR | BookmarkScalarWhereInput[] | No |
| NOT | BookmarkScalarWhereInput | BookmarkScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| shop_id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| element_type | EnumElementTypeFilter | ElementType | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | WishlistWhereUniqueInput | No |
| update | WishlistUpdateWithoutShopInput | WishlistUncheckedUpdateWithoutShopInput | No |
| create | WishlistCreateWithoutShopInput | WishlistUncheckedCreateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | WishlistWhereUniqueInput | No |
| data | WishlistUpdateWithoutShopInput | WishlistUncheckedUpdateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | WishlistScalarWhereInput | No |
| data | WishlistUpdateManyMutationInput | WishlistUncheckedUpdateManyWithoutWishlisted_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | WishlistScalarWhereInput | WishlistScalarWhereInput[] | No |
| OR | WishlistScalarWhereInput[] | No |
| NOT | WishlistScalarWhereInput | WishlistScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| shop_id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| element_type | EnumElementTypeFilter | ElementType | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Recent_Used_ElementWhereUniqueInput | No |
| update | Recent_Used_ElementUpdateWithoutShopInput | Recent_Used_ElementUncheckedUpdateWithoutShopInput | No |
| create | Recent_Used_ElementCreateWithoutShopInput | Recent_Used_ElementUncheckedCreateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Recent_Used_ElementWhereUniqueInput | No |
| data | Recent_Used_ElementUpdateWithoutShopInput | Recent_Used_ElementUncheckedUpdateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Recent_Used_ElementScalarWhereInput | No |
| data | Recent_Used_ElementUpdateManyMutationInput | Recent_Used_ElementUncheckedUpdateManyWithoutRecent_used_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Recent_Used_ElementScalarWhereInput | Recent_Used_ElementScalarWhereInput[] | No |
| OR | Recent_Used_ElementScalarWhereInput[] | No |
| NOT | Recent_Used_ElementScalarWhereInput | Recent_Used_ElementScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| shop_id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| element_type | EnumElementTypeFilter | ElementType | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | No |
| data | Affiliator_CommissionUpdateWithoutShopInput | Affiliator_CommissionUncheckedUpdateWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionScalarWhereInput | No |
| data | Affiliator_CommissionUpdateManyMutationInput | Affiliator_CommissionUncheckedUpdateManyWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutElementsInput | UserUncheckedCreateWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| url | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_ImageWhereUniqueInput | No |
| create | Element_ImageCreateWithoutElementInput | Element_ImageUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Element_ImageCreateManyElementInput | Element_ImageCreateManyElementInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | No |
| description | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| description | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_Best_UseWhereUniqueInput | No |
| create | Element_Best_UseCreateWithoutElementInput | Element_Best_UseUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Element_Best_UseCreateManyElementInput | Element_Best_UseCreateManyElementInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| tag | TagCreateNestedOneWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| tag_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_TagWhereUniqueInput | No |
| create | Element_TagCreateWithoutElementInput | Element_TagUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Element_TagCreateManyElementInput | Element_TagCreateManyElementInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| category | CategoryCreateNestedOneWithoutElement_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_CategoryWhereUniqueInput | No |
| create | Element_CategoryCreateWithoutElementInput | Element_CategoryUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Element_CategoryCreateManyElementInput | Element_CategoryCreateManyElementInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| status | GenericStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutBundle_elementsInput | No |
| bundle | BundleCreateNestedOneWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| element_type | ElementType | No |
| status | GenericStatus | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | No |
| create | Bundle_ElementCreateWithoutElementInput | Bundle_ElementUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Bundle_ElementCreateManyElementInput | Bundle_ElementCreateManyElementInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| created_at | DateTime | No |
| shop | ShopCreateNestedOneWithoutWishlisted_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | WishlistWhereUniqueInput | No |
| create | WishlistCreateWithoutElementInput | WishlistUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | WishlistCreateManyElementInput | WishlistCreateManyElementInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| created_at | DateTime | No |
| shop | ShopCreateNestedOneWithoutBookmarked_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| create | BookmarkCreateWithoutElementInput | BookmarkUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BookmarkCreateManyElementInput | BookmarkCreateManyElementInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| created_at | DateTime | No |
| shop | ShopCreateNestedOneWithoutRecent_used_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Recent_Used_ElementWhereUniqueInput | No |
| create | Recent_Used_ElementCreateWithoutElementInput | Recent_Used_ElementUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Recent_Used_ElementCreateManyElementInput | Recent_Used_ElementCreateManyElementInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutElementsInput | UserUncheckedUpdateWithoutElementsInput | No |
| create | UserCreateWithoutElementsInput | UserUncheckedCreateWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_ImageWhereUniqueInput | No |
| update | Element_ImageUpdateWithoutElementInput | Element_ImageUncheckedUpdateWithoutElementInput | No |
| create | Element_ImageCreateWithoutElementInput | Element_ImageUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_ImageWhereUniqueInput | No |
| data | Element_ImageUpdateWithoutElementInput | Element_ImageUncheckedUpdateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_ImageScalarWhereInput | No |
| data | Element_ImageUpdateManyMutationInput | Element_ImageUncheckedUpdateManyWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_ImageScalarWhereInput | Element_ImageScalarWhereInput[] | No |
| OR | Element_ImageScalarWhereInput[] | No |
| NOT | Element_ImageScalarWhereInput | Element_ImageScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| url | StringFilter | String | No |
| element_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_Best_UseWhereUniqueInput | No |
| update | Element_Best_UseUpdateWithoutElementInput | Element_Best_UseUncheckedUpdateWithoutElementInput | No |
| create | Element_Best_UseCreateWithoutElementInput | Element_Best_UseUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_Best_UseWhereUniqueInput | No |
| data | Element_Best_UseUpdateWithoutElementInput | Element_Best_UseUncheckedUpdateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_Best_UseScalarWhereInput | No |
| data | Element_Best_UseUpdateManyMutationInput | Element_Best_UseUncheckedUpdateManyWithoutBest_UsesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_Best_UseScalarWhereInput | Element_Best_UseScalarWhereInput[] | No |
| OR | Element_Best_UseScalarWhereInput[] | No |
| NOT | Element_Best_UseScalarWhereInput | Element_Best_UseScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| title | StringFilter | String | No |
| description | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| updated_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_TagWhereUniqueInput | No |
| update | Element_TagUpdateWithoutElementInput | Element_TagUncheckedUpdateWithoutElementInput | No |
| create | Element_TagCreateWithoutElementInput | Element_TagUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_TagWhereUniqueInput | No |
| data | Element_TagUpdateWithoutElementInput | Element_TagUncheckedUpdateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_TagScalarWhereInput | No |
| data | Element_TagUpdateManyMutationInput | Element_TagUncheckedUpdateManyWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_TagScalarWhereInput | Element_TagScalarWhereInput[] | No |
| OR | Element_TagScalarWhereInput[] | No |
| NOT | Element_TagScalarWhereInput | Element_TagScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| tag_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_CategoryWhereUniqueInput | No |
| update | Element_CategoryUpdateWithoutElementInput | Element_CategoryUncheckedUpdateWithoutElementInput | No |
| create | Element_CategoryCreateWithoutElementInput | Element_CategoryUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_CategoryWhereUniqueInput | No |
| data | Element_CategoryUpdateWithoutElementInput | Element_CategoryUncheckedUpdateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_CategoryScalarWhereInput | No |
| data | Element_CategoryUpdateManyMutationInput | Element_CategoryUncheckedUpdateManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Element_CategoryScalarWhereInput | Element_CategoryScalarWhereInput[] | No |
| OR | Element_CategoryScalarWhereInput[] | No |
| NOT | Element_CategoryScalarWhereInput | Element_CategoryScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| element_id | IntFilter | Int | No |
| category_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | No |
| update | Bundle_ElementUpdateWithoutElementInput | Bundle_ElementUncheckedUpdateWithoutElementInput | No |
| create | Bundle_ElementCreateWithoutElementInput | Bundle_ElementUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | No |
| data | Bundle_ElementUpdateWithoutElementInput | Bundle_ElementUncheckedUpdateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementScalarWhereInput | No |
| data | Bundle_ElementUpdateManyMutationInput | Bundle_ElementUncheckedUpdateManyWithoutBundlesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | WishlistWhereUniqueInput | No |
| update | WishlistUpdateWithoutElementInput | WishlistUncheckedUpdateWithoutElementInput | No |
| create | WishlistCreateWithoutElementInput | WishlistUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | WishlistWhereUniqueInput | No |
| data | WishlistUpdateWithoutElementInput | WishlistUncheckedUpdateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | WishlistScalarWhereInput | No |
| data | WishlistUpdateManyMutationInput | WishlistUncheckedUpdateManyWithoutWishlisted_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| update | BookmarkUpdateWithoutElementInput | BookmarkUncheckedUpdateWithoutElementInput | No |
| create | BookmarkCreateWithoutElementInput | BookmarkUncheckedCreateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| data | BookmarkUpdateWithoutElementInput | BookmarkUncheckedUpdateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkScalarWhereInput | No |
| data | BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyWithoutBookmarked_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Recent_Used_ElementWhereUniqueInput | No |
| data | Recent_Used_ElementUpdateWithoutElementInput | Recent_Used_ElementUncheckedUpdateWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Recent_Used_ElementScalarWhereInput | No |
| data | Recent_Used_ElementUpdateManyMutationInput | Recent_Used_ElementUncheckedUpdateManyWithoutRecent_used_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutBundlesInput | UserUncheckedCreateWithoutBundlesInput | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | No |
| status | GenericStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutBundle_elementsInput | No |
| element | ElementCreateNestedOneWithoutBundlesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| status | GenericStatus | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | No |
| create | Bundle_ElementCreateWithoutBundleInput | Bundle_ElementUncheckedCreateWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Bundle_ElementCreateManyBundleInput | Bundle_ElementCreateManyBundleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| url | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ImageWhereUniqueInput | No |
| create | Bundle_ImageCreateWithoutBundleInput | Bundle_ImageUncheckedCreateWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Bundle_ImageCreateManyBundleInput | Bundle_ImageCreateManyBundleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| category | CategoryCreateNestedOneWithoutBundle_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_CategoryWhereUniqueInput | No |
| create | Bundle_CategoryCreateWithoutBundleInput | Bundle_CategoryUncheckedCreateWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Bundle_CategoryCreateManyBundleInput | Bundle_CategoryCreateManyBundleInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutBundlesInput | UserUncheckedUpdateWithoutBundlesInput | No |
| create | UserCreateWithoutBundlesInput | UserUncheckedCreateWithoutBundlesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | No |
| update | Bundle_ElementUpdateWithoutBundleInput | Bundle_ElementUncheckedUpdateWithoutBundleInput | No |
| create | Bundle_ElementCreateWithoutBundleInput | Bundle_ElementUncheckedCreateWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementWhereUniqueInput | No |
| data | Bundle_ElementUpdateWithoutBundleInput | Bundle_ElementUncheckedUpdateWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ElementScalarWhereInput | No |
| data | Bundle_ElementUpdateManyMutationInput | Bundle_ElementUncheckedUpdateManyWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ImageWhereUniqueInput | No |
| update | Bundle_ImageUpdateWithoutBundleInput | Bundle_ImageUncheckedUpdateWithoutBundleInput | No |
| create | Bundle_ImageCreateWithoutBundleInput | Bundle_ImageUncheckedCreateWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ImageWhereUniqueInput | No |
| data | Bundle_ImageUpdateWithoutBundleInput | Bundle_ImageUncheckedUpdateWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_ImageScalarWhereInput | No |
| data | Bundle_ImageUpdateManyMutationInput | Bundle_ImageUncheckedUpdateManyWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Bundle_ImageScalarWhereInput | Bundle_ImageScalarWhereInput[] | No |
| OR | Bundle_ImageScalarWhereInput[] | No |
| NOT | Bundle_ImageScalarWhereInput | Bundle_ImageScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| url | StringFilter | String | No |
| bundle_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_CategoryWhereUniqueInput | No |
| update | Bundle_CategoryUpdateWithoutBundleInput | Bundle_CategoryUncheckedUpdateWithoutBundleInput | No |
| create | Bundle_CategoryCreateWithoutBundleInput | Bundle_CategoryUncheckedCreateWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_CategoryWhereUniqueInput | No |
| data | Bundle_CategoryUpdateWithoutBundleInput | Bundle_CategoryUncheckedUpdateWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_CategoryScalarWhereInput | No |
| data | Bundle_CategoryUpdateManyMutationInput | Bundle_CategoryUncheckedUpdateManyWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Bundle_CategoryScalarWhereInput | Bundle_CategoryScalarWhereInput[] | No |
| OR | Bundle_CategoryScalarWhereInput[] | No |
| NOT | Bundle_CategoryScalarWhereInput | Bundle_CategoryScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| bundle_id | IntFilter | Int | No |
| category_id | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutBundle_elementsInput | UserUncheckedCreateWithoutBundle_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutBundlesInput | No |
| images | Bundle_ImageCreateNestedManyWithoutBundleInput | No |
| categories | Bundle_CategoryCreateNestedManyWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| images | Bundle_ImageUncheckedCreateNestedManyWithoutBundleInput | No |
| categories | Bundle_CategoryUncheckedCreateNestedManyWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BundleWhereUniqueInput | No |
| create | BundleCreateWithoutElementsInput | BundleUncheckedCreateWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutElementsInput | No |
| images | Element_ImageCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseCreateNestedManyWithoutElementInput | No |
| tags | Element_TagCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| images | Element_ImageUncheckedCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseUncheckedCreateNestedManyWithoutElementInput | No |
| tags | Element_TagUncheckedCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryUncheckedCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ElementWhereUniqueInput | No |
| create | ElementCreateWithoutBundlesInput | ElementUncheckedCreateWithoutBundlesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutBundle_elementsInput | UserUncheckedUpdateWithoutBundle_elementsInput | No |
| create | UserCreateWithoutBundle_elementsInput | UserUncheckedCreateWithoutBundle_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BundleUpdateWithoutElementsInput | BundleUncheckedUpdateWithoutElementsInput | No |
| create | BundleCreateWithoutElementsInput | BundleUncheckedCreateWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ElementUpdateWithoutBundlesInput | ElementUncheckedUpdateWithoutBundlesInput | No |
| create | ElementCreateWithoutBundlesInput | ElementUncheckedCreateWithoutBundlesInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutElementsInput | No |
| best_Uses | Element_Best_UseCreateNestedManyWithoutElementInput | No |
| tags | Element_TagCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| best_Uses | Element_Best_UseUncheckedCreateNestedManyWithoutElementInput | No |
| tags | Element_TagUncheckedCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryUncheckedCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ElementWhereUniqueInput | No |
| create | ElementCreateWithoutImagesInput | ElementUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ElementUpdateWithoutImagesInput | ElementUncheckedUpdateWithoutImagesInput | No |
| create | ElementCreateWithoutImagesInput | ElementUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutBundlesInput | No |
| elements | Bundle_ElementCreateNestedManyWithoutBundleInput | No |
| categories | Bundle_CategoryCreateNestedManyWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| elements | Bundle_ElementUncheckedCreateNestedManyWithoutBundleInput | No |
| categories | Bundle_CategoryUncheckedCreateNestedManyWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BundleWhereUniqueInput | No |
| create | BundleCreateWithoutImagesInput | BundleUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BundleUpdateWithoutImagesInput | BundleUncheckedUpdateWithoutImagesInput | No |
| create | BundleCreateWithoutImagesInput | BundleUncheckedCreateWithoutImagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutElementsInput | No |
| images | Element_ImageCreateNestedManyWithoutElementInput | No |
| tags | Element_TagCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| images | Element_ImageUncheckedCreateNestedManyWithoutElementInput | No |
| tags | Element_TagUncheckedCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryUncheckedCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ElementWhereUniqueInput | No |
| create | ElementCreateWithoutBest_UsesInput | ElementUncheckedCreateWithoutBest_UsesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ElementUpdateWithoutBest_UsesInput | ElementUncheckedUpdateWithoutBest_UsesInput | No |
| create | ElementCreateWithoutBest_UsesInput | ElementUncheckedCreateWithoutBest_UsesInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCategoriesInput | UserUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| element | ElementCreateNestedOneWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_CategoryWhereUniqueInput | No |
| create | Element_CategoryCreateWithoutCategoryInput | Element_CategoryUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Element_CategoryCreateManyCategoryInput | Element_CategoryCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| bundle | BundleCreateNestedOneWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_CategoryWhereUniqueInput | No |
| create | Bundle_CategoryCreateWithoutCategoryInput | Bundle_CategoryUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Bundle_CategoryCreateManyCategoryInput | Bundle_CategoryCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCategoriesInput | UserUncheckedUpdateWithoutCategoriesInput | No |
| create | UserCreateWithoutCategoriesInput | UserUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_CategoryWhereUniqueInput | No |
| update | Element_CategoryUpdateWithoutCategoryInput | Element_CategoryUncheckedUpdateWithoutCategoryInput | No |
| create | Element_CategoryCreateWithoutCategoryInput | Element_CategoryUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_CategoryWhereUniqueInput | No |
| data | Element_CategoryUpdateWithoutCategoryInput | Element_CategoryUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_CategoryScalarWhereInput | No |
| data | Element_CategoryUpdateManyMutationInput | Element_CategoryUncheckedUpdateManyWithoutElement_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_CategoryWhereUniqueInput | No |
| update | Bundle_CategoryUpdateWithoutCategoryInput | Bundle_CategoryUncheckedUpdateWithoutCategoryInput | No |
| create | Bundle_CategoryCreateWithoutCategoryInput | Bundle_CategoryUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_CategoryWhereUniqueInput | No |
| data | Bundle_CategoryUpdateWithoutCategoryInput | Bundle_CategoryUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Bundle_CategoryScalarWhereInput | No |
| data | Bundle_CategoryUpdateManyMutationInput | Bundle_CategoryUncheckedUpdateManyWithoutBundle_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutElementsInput | No |
| images | Element_ImageCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseCreateNestedManyWithoutElementInput | No |
| tags | Element_TagCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| images | Element_ImageUncheckedCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseUncheckedCreateNestedManyWithoutElementInput | No |
| tags | Element_TagUncheckedCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ElementWhereUniqueInput | No |
| create | ElementCreateWithoutCategoriesInput | ElementUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutCategoriesInput | No |
| bundle_categories | Bundle_CategoryCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| bundle_categories | Bundle_CategoryUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutElement_categoriesInput | CategoryUncheckedCreateWithoutElement_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ElementUpdateWithoutCategoriesInput | ElementUncheckedUpdateWithoutCategoriesInput | No |
| create | ElementCreateWithoutCategoriesInput | ElementUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutCategoriesNestedInput | No |
| bundle_categories | Bundle_CategoryUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| bundle_categories | Bundle_CategoryUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutBundlesInput | No |
| elements | Bundle_ElementCreateNestedManyWithoutBundleInput | No |
| images | Bundle_ImageCreateNestedManyWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| elements | Bundle_ElementUncheckedCreateNestedManyWithoutBundleInput | No |
| images | Bundle_ImageUncheckedCreateNestedManyWithoutBundleInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BundleWhereUniqueInput | No |
| create | BundleCreateWithoutCategoriesInput | BundleUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutCategoriesInput | No |
| element_categories | Element_CategoryCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| element_categories | Element_CategoryUncheckedCreateNestedManyWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CategoryWhereUniqueInput | No |
| create | CategoryCreateWithoutBundle_categoriesInput | CategoryUncheckedCreateWithoutBundle_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | BundleUpdateWithoutCategoriesInput | BundleUncheckedUpdateWithoutCategoriesInput | No |
| create | BundleCreateWithoutCategoriesInput | BundleUncheckedCreateWithoutCategoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutCategoriesNestedInput | No |
| element_categories | Element_CategoryUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| element_categories | Element_CategoryUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTagsInput | UserUncheckedCreateWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | No |
| element | ElementCreateNestedOneWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_TagWhereUniqueInput | No |
| create | Element_TagCreateWithoutTagInput | Element_TagUncheckedCreateWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Element_TagCreateManyTagInput | Element_TagCreateManyTagInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTagsInput | UserUncheckedUpdateWithoutTagsInput | No |
| create | UserCreateWithoutTagsInput | UserUncheckedCreateWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_TagWhereUniqueInput | No |
| update | Element_TagUpdateWithoutTagInput | Element_TagUncheckedUpdateWithoutTagInput | No |
| create | Element_TagCreateWithoutTagInput | Element_TagUncheckedCreateWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_TagWhereUniqueInput | No |
| data | Element_TagUpdateWithoutTagInput | Element_TagUncheckedUpdateWithoutTagInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Element_TagScalarWhereInput | No |
| data | Element_TagUpdateManyMutationInput | Element_TagUncheckedUpdateManyWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| user_id | Int | No |
| description | String | Null | Yes |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | TagWhereUniqueInput | No |
| create | TagCreateWithoutElementsInput | TagUncheckedCreateWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutElementsInput | No |
| images | Element_ImageCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| images | Element_ImageUncheckedCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseUncheckedCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryUncheckedCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ElementWhereUniqueInput | No |
| create | ElementCreateWithoutTagsInput | ElementUncheckedCreateWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TagUpdateWithoutElementsInput | TagUncheckedUpdateWithoutElementsInput | No |
| create | TagCreateWithoutElementsInput | TagUncheckedCreateWithoutElementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutTagsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| update | ElementUpdateWithoutTagsInput | ElementUncheckedUpdateWithoutTagsInput | No |
| create | ElementCreateWithoutTagsInput | ElementUncheckedCreateWithoutTagsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutShopsInput | No |
| current_subscription | Shop_SubscriptionCreateNestedOneWithoutShopsInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| subscription_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopWhereUniqueInput | No |
| create | ShopCreateWithoutOrdersInput | ShopUncheckedCreateWithoutOrdersInput | No |
| Name | Type | Nullable |
|---|---|---|
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| affiliator | AffiliatorCreateNestedOneWithoutCouponsInput | No |
| user | UserCreateNestedOneWithoutCouponsInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| affiliated_by | Int | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CouponWhereUniqueInput | No |
| create | CouponCreateWithoutOrdersInput | CouponUncheckedCreateWithoutOrdersInput | No |
| Name | Type | Nullable |
|---|---|---|
| asset_id | Int | No |
| asset_type | AssetType | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| order_bundle_id | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| asset_id | Int | No |
| asset_type | AssetType | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| order_bundle_id | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Order_ItemWhereUniqueInput | No |
| create | Order_ItemCreateWithoutOrderInput | Order_ItemUncheckedCreateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Order_ItemCreateManyOrderInput | Order_ItemCreateManyOrderInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| affiliator | AffiliatorCreateNestedOneWithoutAffiliator_commissionsInput | No |
| user | UserCreateNestedOneWithoutAffiliator_commissionsInput | No |
| shop | ShopCreateNestedOneWithoutAffiliator_commissionsInput | No |
| coupon | CouponCreateNestedOneWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| user_id | Int | No |
| shop_id | Int | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | No |
| create | Affiliator_CommissionCreateWithoutOrderInput | Affiliator_CommissionUncheckedCreateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Affiliator_CommissionCreateManyOrderInput | Affiliator_CommissionCreateManyOrderInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | ShopUpdateWithoutOrdersInput | ShopUncheckedUpdateWithoutOrdersInput | No |
| create | ShopCreateWithoutOrdersInput | ShopUncheckedCreateWithoutOrdersInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutShopsNestedInput | No |
| current_subscription | Shop_SubscriptionUpdateOneWithoutShopsNestedInput | No |
| bookmarked_elements | BookmarkUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| subscription_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| bookmarked_elements | BookmarkUncheckedUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUncheckedUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CouponUpdateWithoutOrdersInput | CouponUncheckedUpdateWithoutOrdersInput | No |
| create | CouponCreateWithoutOrdersInput | CouponUncheckedCreateWithoutOrdersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Order_ItemWhereUniqueInput | No |
| update | Order_ItemUpdateWithoutOrderInput | Order_ItemUncheckedUpdateWithoutOrderInput | No |
| create | Order_ItemCreateWithoutOrderInput | Order_ItemUncheckedCreateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Order_ItemWhereUniqueInput | No |
| data | Order_ItemUpdateWithoutOrderInput | Order_ItemUncheckedUpdateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Order_ItemScalarWhereInput | No |
| data | Order_ItemUpdateManyMutationInput | Order_ItemUncheckedUpdateManyWithoutOrder_itemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Order_ItemScalarWhereInput | Order_ItemScalarWhereInput[] | No |
| OR | Order_ItemScalarWhereInput[] | No |
| NOT | Order_ItemScalarWhereInput | Order_ItemScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| order_id | IntFilter | Int | No |
| asset_id | IntFilter | Int | No |
| asset_type | EnumAssetTypeFilter | AssetType | No |
| price | DecimalFilter | Decimal | No |
| discounted_price | DecimalNullableFilter | Decimal | Null | Yes |
| discount_type | EnumDiscountTypeNullableFilter | DiscountType | Null | Yes |
| discount_value | DecimalNullableFilter | Decimal | Null | Yes |
| order_bundle_id | IntNullableFilter | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | No |
| data | Affiliator_CommissionUpdateWithoutOrderInput | Affiliator_CommissionUncheckedUpdateWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionScalarWhereInput | No |
| data | Affiliator_CommissionUpdateManyMutationInput | Affiliator_CommissionUncheckedUpdateManyWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| shop | ShopCreateNestedOneWithoutOrdersInput | No |
| coupon | CouponCreateNestedOneWithoutOrdersInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutOrder_itemsInput | OrderUncheckedCreateWithoutOrder_itemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | OrderUpdateWithoutOrder_itemsInput | OrderUncheckedUpdateWithoutOrder_itemsInput | No |
| create | OrderCreateWithoutOrder_itemsInput | OrderUncheckedCreateWithoutOrder_itemsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutAffiliatorsInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAffiliatorInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AffiliatorWhereUniqueInput | No |
| create | AffiliatorCreateWithoutCouponsInput | AffiliatorUncheckedCreateWithoutCouponsInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCouponsInput | UserUncheckedCreateWithoutCouponsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| shop | ShopCreateNestedOneWithoutOrdersInput | No |
| order_items | Order_ItemCreateNestedManyWithoutOrderInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| order_items | Order_ItemUncheckedCreateNestedManyWithoutOrderInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutCouponInput | OrderUncheckedCreateWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | OrderCreateManyCouponInput | OrderCreateManyCouponInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| affiliator | AffiliatorCreateNestedOneWithoutAffiliator_commissionsInput | No |
| user | UserCreateNestedOneWithoutAffiliator_commissionsInput | No |
| order | OrderCreateNestedOneWithoutAffiliator_commissionsInput | No |
| shop | ShopCreateNestedOneWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| user_id | Int | No |
| order_id | Int | Null | Yes |
| shop_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | No |
| create | Affiliator_CommissionCreateWithoutCouponInput | Affiliator_CommissionUncheckedCreateWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Affiliator_CommissionCreateManyCouponInput | Affiliator_CommissionCreateManyCouponInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | AffiliatorUpdateWithoutCouponsInput | AffiliatorUncheckedUpdateWithoutCouponsInput | No |
| create | AffiliatorCreateWithoutCouponsInput | AffiliatorUncheckedCreateWithoutCouponsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCouponsInput | UserUncheckedUpdateWithoutCouponsInput | No |
| create | UserCreateWithoutCouponsInput | UserUncheckedCreateWithoutCouponsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| update | OrderUpdateWithoutCouponInput | OrderUncheckedUpdateWithoutCouponInput | No |
| create | OrderCreateWithoutCouponInput | OrderUncheckedCreateWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| data | OrderUpdateWithoutCouponInput | OrderUncheckedUpdateWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderScalarWhereInput | No |
| data | OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrdersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | No |
| data | Affiliator_CommissionUpdateWithoutCouponInput | Affiliator_CommissionUncheckedUpdateWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionScalarWhereInput | No |
| data | Affiliator_CommissionUpdateManyMutationInput | Affiliator_CommissionUncheckedUpdateManyWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAffiliatorsInput | UserUncheckedCreateWithoutAffiliatorsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| payment_method_detail | User_Pament_MethodCreateNestedOneWithoutAffiliator_withdraw_requestsInput | No |
| assigned_user | UserCreateNestedOneWithoutAffiliator_withdraw_requestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method_id | Int | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| assignee | Int | Null | Yes |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_Withdraw_RequestWhereUniqueInput | No |
| create | Affiliator_Withdraw_RequestCreateWithoutAffiliatorInput | Affiliator_Withdraw_RequestUncheckedCreateWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Affiliator_Withdraw_RequestCreateManyAffiliatorInput | Affiliator_Withdraw_RequestCreateManyAffiliatorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutAffiliator_commissionsInput | No |
| order | OrderCreateNestedOneWithoutAffiliator_commissionsInput | No |
| shop | ShopCreateNestedOneWithoutAffiliator_commissionsInput | No |
| coupon | CouponCreateNestedOneWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| order_id | Int | Null | Yes |
| shop_id | Int | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | No |
| create | Affiliator_CommissionCreateWithoutAffiliatorInput | Affiliator_CommissionUncheckedCreateWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Affiliator_CommissionCreateManyAffiliatorInput | Affiliator_CommissionCreateManyAffiliatorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutCouponsInput | No |
| orders | OrderCreateNestedManyWithoutCouponInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| orders | OrderUncheckedCreateNestedManyWithoutCouponInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CouponWhereUniqueInput | No |
| create | CouponCreateWithoutAffiliatorInput | CouponUncheckedCreateWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | CouponCreateManyAffiliatorInput | CouponCreateManyAffiliatorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutAffiliatorsInput | UserUncheckedUpdateWithoutAffiliatorsInput | No |
| create | UserCreateWithoutAffiliatorsInput | UserUncheckedCreateWithoutAffiliatorsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionWhereUniqueInput | No |
| data | Affiliator_CommissionUpdateWithoutAffiliatorInput | Affiliator_CommissionUncheckedUpdateWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Affiliator_CommissionScalarWhereInput | No |
| data | Affiliator_CommissionUpdateManyMutationInput | Affiliator_CommissionUncheckedUpdateManyWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CouponWhereUniqueInput | No |
| update | CouponUpdateWithoutAffiliatorInput | CouponUncheckedUpdateWithoutAffiliatorInput | No |
| create | CouponCreateWithoutAffiliatorInput | CouponUncheckedCreateWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CouponWhereUniqueInput | No |
| data | CouponUpdateWithoutAffiliatorInput | CouponUncheckedUpdateWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CouponScalarWhereInput | No |
| data | CouponUpdateManyMutationInput | CouponUncheckedUpdateManyWithoutCouponsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutAffiliatorsInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAffiliatorInput | No |
| coupons | CouponCreateNestedManyWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| coupons | CouponUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AffiliatorWhereUniqueInput | No |
| create | AffiliatorCreateWithoutAffiliator_commissionsInput | AffiliatorUncheckedCreateWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAffiliator_commissionsInput | UserUncheckedCreateWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| shop | ShopCreateNestedOneWithoutOrdersInput | No |
| coupon | CouponCreateNestedOneWithoutOrdersInput | No |
| order_items | Order_ItemCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| order_items | Order_ItemUncheckedCreateNestedManyWithoutOrderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | OrderWhereUniqueInput | No |
| create | OrderCreateWithoutAffiliator_commissionsInput | OrderUncheckedCreateWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutShopsInput | No |
| current_subscription | Shop_SubscriptionCreateNestedOneWithoutShopsInput | No |
| orders | OrderCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| subscription_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| orders | OrderUncheckedCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopWhereUniqueInput | No |
| create | ShopCreateWithoutAffiliator_commissionsInput | ShopUncheckedCreateWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| affiliator | AffiliatorCreateNestedOneWithoutCouponsInput | No |
| user | UserCreateNestedOneWithoutCouponsInput | No |
| orders | OrderCreateNestedManyWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| affiliated_by | Int | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| orders | OrderUncheckedCreateNestedManyWithoutCouponInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CouponWhereUniqueInput | No |
| create | CouponCreateWithoutAffiliator_commissionsInput | CouponUncheckedCreateWithoutAffiliator_commissionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutShopsNestedInput | No |
| current_subscription | Shop_SubscriptionUpdateOneWithoutShopsNestedInput | No |
| orders | OrderUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| subscription_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orders | OrderUncheckedUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUncheckedUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUncheckedUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutAffiliatorsInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutAffiliatorInput | No |
| coupons | CouponCreateNestedManyWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| coupons | CouponUncheckedCreateNestedManyWithoutAffiliatorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AffiliatorWhereUniqueInput | No |
| create | AffiliatorCreateWithoutAffiliator_withdraw_requestsInput | AffiliatorUncheckedCreateWithoutAffiliator_withdraw_requestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| method | PaymentMethod | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| user | UserCreateNestedOneWithoutUser_pament_methodsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| method | PaymentMethod | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAffiliator_withdraw_requestsInput | UserUncheckedCreateWithoutAffiliator_withdraw_requestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | BoolFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutUser_pament_methodsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | BoolFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutUser_pament_methodsInput | UserUncheckedCreateWithoutUser_pament_methodsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| affiliator | AffiliatorCreateNestedOneWithoutAffiliator_withdraw_requestsInput | No |
| assigned_user | UserCreateNestedOneWithoutAffiliator_withdraw_requestsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| assignee | Int | Null | Yes |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| data | Affiliator_Withdraw_RequestCreateManyPayment_method_detailInput | Affiliator_Withdraw_RequestCreateManyPayment_method_detailInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutUser_pament_methodsInput | UserUncheckedUpdateWithoutUser_pament_methodsInput | No |
| create | UserCreateWithoutUser_pament_methodsInput | UserUncheckedCreateWithoutUser_pament_methodsInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutPricing_plansInput | UserUncheckedCreateWithoutPricing_plansInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| shop_id | Int | No |
| plan_type | PricingPlanType | No |
| status | SubscriptionStatus | No |
| created_at | DateTime | No |
| ended_at | DateTime | Null | Yes |
| ended_type | SubscriptionEndedType | Null | Yes |
| updated_at | DateTime | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| shops | ShopCreateNestedManyWithoutCurrent_subscriptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| plan_type | PricingPlanType | No |
| status | SubscriptionStatus | No |
| created_at | DateTime | No |
| ended_at | DateTime | Null | Yes |
| ended_type | SubscriptionEndedType | Null | Yes |
| updated_at | DateTime | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| shops | ShopUncheckedCreateNestedManyWithoutCurrent_subscriptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Shop_SubscriptionWhereUniqueInput | No |
| create | Shop_SubscriptionCreateWithoutPlanInput | Shop_SubscriptionUncheckedCreateWithoutPlanInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Shop_SubscriptionCreateManyPlanInput | Shop_SubscriptionCreateManyPlanInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | No |
| type | String | Null | Yes |
| description | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| type | String | Null | Yes |
| description | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Pricing_Plan_FeatureWhereUniqueInput | No |
| create | Pricing_Plan_FeatureCreateWithoutPricing_planInput | Pricing_Plan_FeatureUncheckedCreateWithoutPricing_planInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Pricing_Plan_FeatureCreateManyPricing_planInput | Pricing_Plan_FeatureCreateManyPricing_planInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutPricing_plansInput | UserUncheckedUpdateWithoutPricing_plansInput | No |
| create | UserCreateWithoutPricing_plansInput | UserUncheckedCreateWithoutPricing_plansInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Shop_SubscriptionWhereUniqueInput | No |
| update | Shop_SubscriptionUpdateWithoutPlanInput | Shop_SubscriptionUncheckedUpdateWithoutPlanInput | No |
| create | Shop_SubscriptionCreateWithoutPlanInput | Shop_SubscriptionUncheckedCreateWithoutPlanInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Shop_SubscriptionWhereUniqueInput | No |
| data | Shop_SubscriptionUpdateWithoutPlanInput | Shop_SubscriptionUncheckedUpdateWithoutPlanInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Shop_SubscriptionScalarWhereInput | No |
| data | Shop_SubscriptionUpdateManyMutationInput | Shop_SubscriptionUncheckedUpdateManyWithoutSubscriptionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Shop_SubscriptionScalarWhereInput | Shop_SubscriptionScalarWhereInput[] | No |
| OR | Shop_SubscriptionScalarWhereInput[] | No |
| NOT | Shop_SubscriptionScalarWhereInput | Shop_SubscriptionScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| uuid | StringFilter | String | No |
| shop_id | IntFilter | Int | No |
| plan_id | IntFilter | Int | No |
| plan_type | EnumPricingPlanTypeFilter | PricingPlanType | No |
| status | EnumSubscriptionStatusFilter | SubscriptionStatus | No |
| created_at | DateTimeFilter | DateTime | No |
| ended_at | DateTimeNullableFilter | DateTime | Null | Yes |
| ended_type | EnumSubscriptionEndedTypeNullableFilter | SubscriptionEndedType | Null | Yes |
| updated_at | DateTimeFilter | DateTime | No |
| amount | DecimalFilter | Decimal | No |
| payment_method | EnumPaymentMethodFilter | PaymentMethod | No |
| Name | Type | Nullable |
|---|---|---|
| where | Pricing_Plan_FeatureWhereUniqueInput | No |
| data | Pricing_Plan_FeatureUpdateWithoutPricing_planInput | Pricing_Plan_FeatureUncheckedUpdateWithoutPricing_planInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Pricing_Plan_FeatureScalarWhereInput | No |
| data | Pricing_Plan_FeatureUpdateManyMutationInput | Pricing_Plan_FeatureUncheckedUpdateManyWithoutPricing_plan_featuresInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | Pricing_Plan_FeatureScalarWhereInput | Pricing_Plan_FeatureScalarWhereInput[] | No |
| OR | Pricing_Plan_FeatureScalarWhereInput[] | No |
| NOT | Pricing_Plan_FeatureScalarWhereInput | Pricing_Plan_FeatureScalarWhereInput[] | No |
| id | IntFilter | Int | No |
| plan_id | IntFilter | Int | No |
| title | StringFilter | String | No |
| type | StringNullableFilter | String | Null | Yes |
| description | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| yearly_discounted_price | Decimal | Null | Yes |
| trial_period | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutPricing_plansInput | No |
| subscriptions | Shop_SubscriptionCreateNestedManyWithoutPlanInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| yearly_discounted_price | Decimal | Null | Yes |
| trial_period | Int | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| subscriptions | Shop_SubscriptionUncheckedCreateNestedManyWithoutPlanInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Pricing_PlanWhereUniqueInput | No |
| create | Pricing_PlanCreateWithoutPricing_plan_featuresInput | Pricing_PlanUncheckedCreateWithoutPricing_plan_featuresInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| yearly_discounted_price | Decimal | Null | Yes |
| trial_period | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutPricing_plansInput | No |
| pricing_plan_features | Pricing_Plan_FeatureCreateNestedManyWithoutPricing_planInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| yearly_discounted_price | Decimal | Null | Yes |
| trial_period | Int | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| pricing_plan_features | Pricing_Plan_FeatureUncheckedCreateNestedManyWithoutPricing_planInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Pricing_PlanWhereUniqueInput | No |
| create | Pricing_PlanCreateWithoutSubscriptionsInput | Pricing_PlanUncheckedCreateWithoutSubscriptionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutShopsInput | No |
| orders | OrderCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| orders | OrderUncheckedCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopWhereUniqueInput | No |
| create | ShopCreateWithoutCurrent_subscriptionInput | ShopUncheckedCreateWithoutCurrent_subscriptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ShopCreateManyCurrent_subscriptionInput | ShopCreateManyCurrent_subscriptionInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopWhereUniqueInput | No |
| update | ShopUpdateWithoutCurrent_subscriptionInput | ShopUncheckedUpdateWithoutCurrent_subscriptionInput | No |
| create | ShopCreateWithoutCurrent_subscriptionInput | ShopUncheckedCreateWithoutCurrent_subscriptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopWhereUniqueInput | No |
| data | ShopUpdateWithoutCurrent_subscriptionInput | ShopUncheckedUpdateWithoutCurrent_subscriptionInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopScalarWhereInput | No |
| data | ShopUpdateManyMutationInput | ShopUncheckedUpdateManyWithoutShopsInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFaqsInput | UserUncheckedCreateWithoutFaqsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| description | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutFaq_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| user_id | Int | No |
| description | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | Faq_CategoryWhereUniqueInput | No |
| create | Faq_CategoryCreateWithoutFaqsInput | Faq_CategoryUncheckedCreateWithoutFaqsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFaqsInput | UserUncheckedUpdateWithoutFaqsInput | No |
| create | UserCreateWithoutFaqsInput | UserUncheckedCreateWithoutFaqsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | Faq_CategoryUpdateWithoutFaqsInput | Faq_CategoryUncheckedUpdateWithoutFaqsInput | No |
| create | Faq_CategoryCreateWithoutFaqsInput | Faq_CategoryUncheckedCreateWithoutFaqsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutFaq_categoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFaq_categoriesInput | UserUncheckedCreateWithoutFaq_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| question | String | No |
| answer | String | No |
| status | FaqStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutFaqsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| question | String | No |
| answer | String | No |
| status | FaqStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | FaqWhereUniqueInput | No |
| create | FaqCreateWithoutCategoryInput | FaqUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FaqCreateManyCategoryInput | FaqCreateManyCategoryInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFaq_categoriesInput | UserUncheckedUpdateWithoutFaq_categoriesInput | No |
| create | UserCreateWithoutFaq_categoriesInput | UserUncheckedCreateWithoutFaq_categoriesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FaqWhereUniqueInput | No |
| update | FaqUpdateWithoutCategoryInput | FaqUncheckedUpdateWithoutCategoryInput | No |
| create | FaqCreateWithoutCategoryInput | FaqUncheckedCreateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FaqWhereUniqueInput | No |
| data | FaqUpdateWithoutCategoryInput | FaqUncheckedUpdateWithoutCategoryInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FaqScalarWhereInput | No |
| data | FaqUpdateManyMutationInput | FaqUncheckedUpdateManyWithoutFaqsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutShopsInput | No |
| current_subscription | Shop_SubscriptionCreateNestedOneWithoutShopsInput | No |
| orders | OrderCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| subscription_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| orders | OrderUncheckedCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopWhereUniqueInput | No |
| create | ShopCreateWithoutWishlisted_elementsInput | ShopUncheckedCreateWithoutWishlisted_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutElementsInput | No |
| images | Element_ImageCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseCreateNestedManyWithoutElementInput | No |
| tags | Element_TagCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| images | Element_ImageUncheckedCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseUncheckedCreateNestedManyWithoutElementInput | No |
| tags | Element_TagUncheckedCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryUncheckedCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ElementWhereUniqueInput | No |
| create | ElementCreateWithoutWishlisted_elementsInput | ElementUncheckedCreateWithoutWishlisted_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ShopUpdateWithoutWishlisted_elementsInput | ShopUncheckedUpdateWithoutWishlisted_elementsInput | No |
| create | ShopCreateWithoutWishlisted_elementsInput | ShopUncheckedCreateWithoutWishlisted_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutShopsNestedInput | No |
| current_subscription | Shop_SubscriptionUpdateOneWithoutShopsNestedInput | No |
| orders | OrderUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| subscription_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orders | OrderUncheckedUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUncheckedUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutShopsInput | No |
| current_subscription | Shop_SubscriptionCreateNestedOneWithoutShopsInput | No |
| orders | OrderCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| subscription_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| orders | OrderUncheckedCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutShopInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopWhereUniqueInput | No |
| create | ShopCreateWithoutBookmarked_elementsInput | ShopUncheckedCreateWithoutBookmarked_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutElementsInput | No |
| images | Element_ImageCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseCreateNestedManyWithoutElementInput | No |
| tags | Element_TagCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| images | Element_ImageUncheckedCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseUncheckedCreateNestedManyWithoutElementInput | No |
| tags | Element_TagUncheckedCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryUncheckedCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutElementInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ElementWhereUniqueInput | No |
| create | ElementCreateWithoutBookmarked_elementsInput | ElementUncheckedCreateWithoutBookmarked_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ShopUpdateWithoutBookmarked_elementsInput | ShopUncheckedUpdateWithoutBookmarked_elementsInput | No |
| create | ShopCreateWithoutBookmarked_elementsInput | ShopUncheckedCreateWithoutBookmarked_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutShopsNestedInput | No |
| current_subscription | Shop_SubscriptionUpdateOneWithoutShopsNestedInput | No |
| orders | OrderUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| subscription_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orders | OrderUncheckedUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUncheckedUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutShopsInput | No |
| current_subscription | Shop_SubscriptionCreateNestedOneWithoutShopsInput | No |
| orders | OrderCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| subscription_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| orders | OrderUncheckedCreateNestedManyWithoutShopInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutShopInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutShopInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ShopWhereUniqueInput | No |
| create | ShopCreateWithoutRecent_used_elementsInput | ShopUncheckedCreateWithoutRecent_used_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| user | UserCreateNestedOneWithoutElementsInput | No |
| images | Element_ImageCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseCreateNestedManyWithoutElementInput | No |
| tags | Element_TagCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| user_id | Int | No |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| images | Element_ImageUncheckedCreateNestedManyWithoutElementInput | No |
| best_Uses | Element_Best_UseUncheckedCreateNestedManyWithoutElementInput | No |
| tags | Element_TagUncheckedCreateNestedManyWithoutElementInput | No |
| categories | Element_CategoryUncheckedCreateNestedManyWithoutElementInput | No |
| bundles | Bundle_ElementUncheckedCreateNestedManyWithoutElementInput | No |
| wishlisted_elements | WishlistUncheckedCreateNestedManyWithoutElementInput | No |
| bookmarked_elements | BookmarkUncheckedCreateNestedManyWithoutElementInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ElementWhereUniqueInput | No |
| create | ElementCreateWithoutRecent_used_elementsInput | ElementUncheckedCreateWithoutRecent_used_elementsInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutShopsNestedInput | No |
| current_subscription | Shop_SubscriptionUpdateOneWithoutShopsNestedInput | No |
| orders | OrderUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| subscription_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orders | OrderUncheckedUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUncheckedUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUncheckedUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSupport_ticketsInput | UserUncheckedCreateWithoutSupport_ticketsInput | No |
| Name | Type | Nullable |
|---|---|---|
| message | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutTicket_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| message | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Ticket_MessageWhereUniqueInput | No |
| create | Ticket_MessageCreateWithoutSupport_ticketInput | Ticket_MessageUncheckedCreateWithoutSupport_ticketInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | Ticket_MessageCreateManySupport_ticketInput | Ticket_MessageCreateManySupport_ticketInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutSupport_ticketsInput | UserUncheckedUpdateWithoutSupport_ticketsInput | No |
| create | UserCreateWithoutSupport_ticketsInput | UserUncheckedCreateWithoutSupport_ticketsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Ticket_MessageWhereUniqueInput | No |
| data | Ticket_MessageUpdateWithoutSupport_ticketInput | Ticket_MessageUncheckedUpdateWithoutSupport_ticketInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | Ticket_MessageScalarWhereInput | No |
| data | Ticket_MessageUpdateManyMutationInput | Ticket_MessageUncheckedUpdateManyWithoutTicket_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| team_members | Team_MemberCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTicket_messagesInput | UserUncheckedCreateWithoutTicket_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | No |
| ref_id | Int | No |
| ref_type | SupportRefType | No |
| criteria | SupportCriteria | No |
| reason | String | No |
| description | String | No |
| status | SupportStatus | Null | Yes |
| label | SupportLabel | Null | Yes |
| assignee | Int | Null | Yes |
| assigned_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| user | UserCreateNestedOneWithoutSupport_ticketsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| ref_id | Int | No |
| ref_type | SupportRefType | No |
| criteria | SupportCriteria | No |
| reason | String | No |
| description | String | No |
| status | SupportStatus | Null | Yes |
| label | SupportLabel | Null | Yes |
| assignee | Int | Null | Yes |
| assigned_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | Support_TicketWhereUniqueInput | No |
| create | Support_TicketCreateWithoutTicket_messagesInput | Support_TicketUncheckedCreateWithoutTicket_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTicket_messagesInput | UserUncheckedUpdateWithoutTicket_messagesInput | No |
| create | UserCreateWithoutTicket_messagesInput | UserUncheckedCreateWithoutTicket_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput | No |
| criteria | SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput | No |
| reason | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| status | SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null | Yes |
| label | SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null | Yes |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| assigned_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutSupport_ticketsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput | No |
| criteria | SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput | No |
| reason | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| status | SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null | Yes |
| label | SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null | Yes |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| assigned_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | Null | Yes |
| phone | String | Null | Yes |
| profile_photo | String | Null | Yes |
| role | UserRole | No |
| status | UserStatus | Null | Yes |
| is_verified | Boolean | Null | Yes |
| is_shopify_user | Boolean | Null | Yes |
| date_of_birth | DateTime | Null | Yes |
| country_code | String | Null | Yes |
| country | String | Null | Yes |
| address | String | Null | Yes |
| website_url | String | Null | Yes |
| social_handles | NullableJsonNullValueInput | Json | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| shops | ShopCreateNestedManyWithoutUserInput | No |
| bundles | BundleCreateNestedManyWithoutUserInput | No |
| bundle_elements | Bundle_ElementCreateNestedManyWithoutUserInput | No |
| elements | ElementCreateNestedManyWithoutUserInput | No |
| pricing_plans | Pricing_PlanCreateNestedManyWithoutUserInput | No |
| faqs | FaqCreateNestedManyWithoutUserInput | No |
| faq_categories | Faq_CategoryCreateNestedManyWithoutUserInput | No |
| categories | CategoryCreateNestedManyWithoutUserInput | No |
| tags | TagCreateNestedManyWithoutUserInput | No |
| support_tickets | Support_TicketCreateNestedManyWithoutUserInput | No |
| ticket_messages | Ticket_MessageCreateNestedManyWithoutUserInput | No |
| affiliators | AffiliatorCreateNestedManyWithoutUserInput | No |
| affiliator_commissions | Affiliator_CommissionCreateNestedManyWithoutUserInput | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput | No |
| coupons | CouponCreateNestedManyWithoutUserInput | No |
| user_pament_methods | User_Pament_MethodCreateNestedManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTeam_membersInput | UserUncheckedCreateWithoutTeam_membersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTeam_membersInput | UserUncheckedUpdateWithoutTeam_membersInput | No |
| create | UserCreateWithoutTeam_membersInput | UserUncheckedCreateWithoutTeam_membersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| subscription_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | Null | Yes |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| status | GenericStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| demo_url | String | Null | Yes |
| video_url | String | Null | Yes |
| version | String | Null | Yes |
| wishlisted_count | Int | Null | Yes |
| bookmarked_count | Int | Null | Yes |
| added_theme_count | Int | Null | Yes |
| view_count | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| yearly_discounted_price | Decimal | Null | Yes |
| trial_period | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| question | String | No |
| answer | String | No |
| status | FaqStatus | No |
| category_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| description | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | Null | Yes |
| image | String | Null | Yes |
| banner | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| ref_id | Int | No |
| ref_type | SupportRefType | No |
| criteria | SupportCriteria | No |
| reason | String | No |
| description | String | No |
| status | SupportStatus | Null | Yes |
| label | SupportLabel | Null | Yes |
| assignee | Int | Null | Yes |
| assigned_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| ticket_id | Int | No |
| message | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| invited_by | Int | Null | Yes |
| type | AffiliatorType | No |
| type_other | String | Null | Yes |
| status | AffiliatorStatus | No |
| total_earned | Decimal | Null | Yes |
| total_paid | Decimal | Null | Yes |
| current_coupon_id | Int | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| order_id | Int | Null | Yes |
| shop_id | Int | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method_id | Int | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| affiliated_by | Int | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| method | PaymentMethod | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| role | TeamMemberRole | No |
| designation | String | Null | Yes |
| badge | String | Null | Yes |
| invited_by | Int | Null | Yes |
| onboarded_at | DateTime | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| current_subscription | Shop_SubscriptionUpdateOneWithoutShopsNestedInput | No |
| orders | OrderUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| subscription_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orders | OrderUncheckedUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUncheckedUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUncheckedUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| subscription_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| bundle | BundleUpdateOneWithoutElementsNestedInput | No |
| element | ElementUpdateOneWithoutBundlesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| tagline | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| type | PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput | No |
| is_recommended | Boolean | BoolFieldUpdateOperationsInput | No |
| is_popular | Boolean | BoolFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| discounted_price | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| yearly_discounted_price | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| trial_period | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| status | FaqStatus | EnumFaqStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| category | Faq_CategoryUpdateOneWithoutFaqsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| status | FaqStatus | EnumFaqStatusFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| status | FaqStatus | EnumFaqStatusFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| faqs | FaqUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| faqs | FaqUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| element_categories | Element_CategoryUpdateManyWithoutCategoryNestedInput | No |
| bundle_categories | Bundle_CategoryUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| element_categories | Element_CategoryUncheckedUpdateManyWithoutCategoryNestedInput | No |
| bundle_categories | Bundle_CategoryUncheckedUpdateManyWithoutCategoryNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| elements | Element_TagUpdateManyWithoutTagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| elements | Element_TagUncheckedUpdateManyWithoutTagNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| slug | String | StringFieldUpdateOperationsInput | No |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| banner | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput | No |
| criteria | SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput | No |
| reason | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| status | SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null | Yes |
| label | SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null | Yes |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| assigned_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ticket_messages | Ticket_MessageUpdateManyWithoutSupport_ticketNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput | No |
| criteria | SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput | No |
| reason | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| status | SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null | Yes |
| label | SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null | Yes |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| assigned_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ticket_messages | Ticket_MessageUncheckedUpdateManyWithoutSupport_ticketNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| ref_id | Int | IntFieldUpdateOperationsInput | No |
| ref_type | SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput | No |
| criteria | SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput | No |
| reason | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| status | SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null | Yes |
| label | SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null | Yes |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| assigned_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| message | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| support_ticket | Support_TicketUpdateOneWithoutTicket_messagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| ticket_id | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| ticket_id | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| invited_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| type | AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput | No |
| type_other | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| status | AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput | No |
| total_earned | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| total_paid | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| current_coupon_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| status | CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reject_reason | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| affiliator | AffiliatorUpdateOneWithoutAffiliator_withdraw_requestsNestedInput | No |
| payment_method_detail | User_Pament_MethodUpdateOneWithoutAffiliator_withdraw_requestsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| affiliator_id | Int | IntFieldUpdateOperationsInput | No |
| status | CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method_id | Int | IntFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reject_reason | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| affiliator_id | Int | IntFieldUpdateOperationsInput | No |
| status | CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method_id | Int | IntFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reject_reason | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | BoolFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestUpdateManyWithoutPayment_method_detailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | BoolFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| affiliator_withdraw_requests | Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutPayment_method_detailNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| details | JsonNullValueInput | Json | No |
| is_default | Boolean | BoolFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| role | TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput | No |
| designation | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| badge | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| invited_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| onboarded_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| role | TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput | No |
| designation | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| badge | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| invited_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| onboarded_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| role | TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput | No |
| designation | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| badge | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| invited_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| onboarded_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| user_id | Int | No |
| order_id | Int | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| element | ElementUpdateOneWithoutBookmarked_elementsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| element | ElementUpdateOneWithoutWishlisted_elementsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| element | ElementUpdateOneWithoutRecent_used_elementsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| description | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| tag_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| element_type | ElementType | No |
| status | GenericStatus | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| url | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| tag | TagUpdateOneWithoutElementsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| tag_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| tag_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneWithoutElement_categoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutBundle_elementsNestedInput | No |
| bundle | BundleUpdateOneWithoutElementsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shop | ShopUpdateOneWithoutWishlisted_elementsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shop | ShopUpdateOneWithoutBookmarked_elementsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| shop | ShopUpdateOneWithoutRecent_used_elementsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| status | GenericStatus | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutBundle_elementsNestedInput | No |
| element | ElementUpdateOneWithoutBundlesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| element_type | ElementType | EnumElementTypeFieldUpdateOperationsInput | No |
| status | GenericStatus | EnumGenericStatusFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| url | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| url | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| category | CategoryUpdateOneWithoutBundle_categoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| category_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| element | ElementUpdateOneWithoutCategoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| bundle | BundleUpdateOneWithoutCategoriesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| bundle_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| element | ElementUpdateOneWithoutTagsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| element_id | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| asset_id | Int | No |
| asset_type | AssetType | No |
| price | Decimal | No |
| discounted_price | Decimal | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| order_bundle_id | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| user_id | Int | No |
| shop_id | Int | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| asset_id | Int | IntFieldUpdateOperationsInput | No |
| asset_type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| discounted_price | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| discount_type | DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null | Yes |
| discount_value | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| order_bundle_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| asset_id | Int | IntFieldUpdateOperationsInput | No |
| asset_type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| discounted_price | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| discount_type | DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null | Yes |
| discount_value | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| order_bundle_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| asset_id | Int | IntFieldUpdateOperationsInput | No |
| asset_type | AssetType | EnumAssetTypeFieldUpdateOperationsInput | No |
| price | Decimal | DecimalFieldUpdateOperationsInput | No |
| discounted_price | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| discount_type | DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null | Yes |
| discount_value | Decimal | NullableDecimalFieldUpdateOperationsInput | Null | Yes |
| order_bundle_id | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | Null | Yes |
| coupon_code | String | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| grand_total | Decimal | No |
| affiliated_by | Int | Null | Yes |
| affiliated_commission | Decimal | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| user_id | Int | No |
| order_id | Int | Null | Yes |
| shop_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method_id | Int | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| assignee | Int | Null | Yes |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| order_id | Int | Null | Yes |
| shop_id | Int | Null | Yes |
| coupon_id | Int | Null | Yes |
| coupon_code | String | Null | Yes |
| order_amout | Decimal | Null | Yes |
| coupon_discount_type | DiscountType | Null | Yes |
| coupon_discount_value | Decimal | Null | Yes |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | Null | Yes |
| max_total_applied | Int | Null | Yes |
| max_applied_by_shop | Int | Null | Yes |
| discount_type | DiscountType | Null | Yes |
| discount_value | Decimal | Null | Yes |
| min_order_amount | Decimal | Null | Yes |
| max_discount_limit | Decimal | Null | Yes |
| is_apply_on_asset_discount | Boolean | Null | Yes |
| commission_type | DiscountType | Null | Yes |
| commission_value | Decimal | Null | Yes |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| status | CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reject_reason | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| payment_method_detail | User_Pament_MethodUpdateOneWithoutAffiliator_withdraw_requestsNestedInput | No |
| assigned_user | UserUpdateOneWithoutAffiliator_withdraw_requestsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| status | CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method_id | Int | IntFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| payment_method_details | JsonNullValueInput | Json | No |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reject_reason | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| payment_method_details | JsonNullValueInput | Json | No |
| assignee | Int | Null | Yes |
| note | String | Null | Yes |
| reject_reason | String | Null | Yes |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| status | CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| payment_method_details | JsonNullValueInput | Json | No |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reject_reason | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| affiliator | AffiliatorUpdateOneWithoutAffiliator_withdraw_requestsNestedInput | No |
| assigned_user | UserUpdateOneWithoutAffiliator_withdraw_requestsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| affiliator_id | Int | IntFieldUpdateOperationsInput | No |
| status | CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| payment_method_details | JsonNullValueInput | Json | No |
| assignee | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| note | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| reject_reason | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| plan_type | PricingPlanType | No |
| status | SubscriptionStatus | No |
| created_at | DateTime | No |
| ended_at | DateTime | Null | Yes |
| ended_type | SubscriptionEndedType | Null | Yes |
| updated_at | DateTime | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| title | String | No |
| type | String | Null | Yes |
| description | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| plan_type | PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput | No |
| status | SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| ended_type | SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| shops | ShopUpdateManyWithoutCurrent_subscriptionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| plan_type | PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput | No |
| status | SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| ended_type | SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| shops | ShopUncheckedUpdateManyWithoutCurrent_subscriptionNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| shop_id | Int | IntFieldUpdateOperationsInput | No |
| plan_type | PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput | No |
| status | SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| ended_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| ended_type | SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null | Yes |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| amount | Decimal | DecimalFieldUpdateOperationsInput | No |
| payment_method | PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| title | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| title | String | StringFieldUpdateOperationsInput | No |
| type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| description | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| uuid | String | StringFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutShopsNestedInput | No |
| orders | OrderUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| uuid | String | StringFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| shopify_shop_id | Int | IntFieldUpdateOperationsInput | No |
| name | String | StringFieldUpdateOperationsInput | No |
| domain | String | StringFieldUpdateOperationsInput | No |
| status | ShopStatus | EnumShopStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| orders | OrderUncheckedUpdateManyWithoutShopNestedInput | No |
| bookmarked_elements | BookmarkUncheckedUpdateManyWithoutShopNestedInput | No |
| wishlisted_elements | WishlistUncheckedUpdateManyWithoutShopNestedInput | No |
| recent_used_elements | Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput | No |
| affiliator_commissions | Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| question | String | No |
| answer | String | No |
| status | FaqStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | Null | Yes |
| deleted_by | Int | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| status | FaqStatus | EnumFaqStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneWithoutFaqsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| question | String | StringFieldUpdateOperationsInput | No |
| answer | String | StringFieldUpdateOperationsInput | No |
| status | FaqStatus | EnumFaqStatusFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| deleted_at | DateTime | NullableDateTimeFieldUpdateOperationsInput | Null | Yes |
| deleted_by | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| message | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| message | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneWithoutTicket_messagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | IntFieldUpdateOperationsInput | No |
| user_id | Int | IntFieldUpdateOperationsInput | No |
| message | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| updated_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| first_name | String | Yes |
| last_name | String | Yes |
| String | Yes | |
| password | String | No |
| phone | String | No |
| profile_photo | String | No |
| role | UserRole | Yes |
| status | UserStatus | No |
| is_verified | Boolean | No |
| is_shopify_user | Boolean | No |
| date_of_birth | DateTime | No |
| country_code | String | No |
| country | String | No |
| address | String | No |
| website_url | String | No |
| social_handles | Json | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| shops | Shop[] | No |
| bundles | Bundle[] | No |
| bundle_elements | Bundle_Element[] | No |
| elements | Element[] | No |
| pricing_plans | Pricing_Plan[] | No |
| faqs | Faq[] | No |
| faq_categories | Faq_Category[] | No |
| categories | Category[] | No |
| tags | Tag[] | No |
| support_tickets | Support_Ticket[] | No |
| ticket_messages | Ticket_Message[] | No |
| affiliators | Affiliator[] | No |
| affiliator_commissions | Affiliator_Commission[] | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_Request[] | No |
| coupons | Coupon[] | No |
| user_pament_methods | User_Pament_Method[] | No |
| team_members | Team_Member[] | No |
| _count | UserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| user_id | Int | Yes |
| shopify_shop_id | Int | Yes |
| name | String | Yes |
| domain | String | Yes |
| status | ShopStatus | Yes |
| subscription_id | Int | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| user | User | No |
| current_subscription | Shop_Subscription | No |
| orders | Order[] | No |
| bookmarked_elements | Bookmark[] | No |
| wishlisted_elements | Wishlist[] | No |
| recent_used_elements | Recent_Used_Element[] | No |
| affiliator_commissions | Affiliator_Commission[] | No |
| _count | ShopCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| slug | String | Yes |
| description | String | Yes |
| featured_image | String | Yes |
| content | String | Yes |
| file_name | String | Yes |
| status | GenericStatus | Yes |
| type | ElementType | Yes |
| price | Decimal | Yes |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| demo_url | String | No |
| video_url | String | No |
| version | String | No |
| user_id | Int | Yes |
| wishlisted_count | Int | No |
| bookmarked_count | Int | No |
| added_theme_count | Int | No |
| view_count | Int | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| user | User | No |
| images | Element_Image[] | No |
| best_Uses | Element_Best_Use[] | No |
| tags | Element_Tag[] | No |
| categories | Element_Category[] | No |
| bundles | Bundle_Element[] | No |
| wishlisted_elements | Wishlist[] | No |
| bookmarked_elements | Bookmark[] | No |
| recent_used_elements | Recent_Used_Element[] | No |
| _count | ElementCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| slug | String | Yes |
| description | String | Yes |
| featured_image | String | Yes |
| status | GenericStatus | Yes |
| type | BundleType | Yes |
| is_auto_price | Boolean | No |
| price | Decimal | Yes |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| demo_url | String | No |
| video_url | String | No |
| version | String | No |
| user_id | Int | Yes |
| view_count | Int | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| user | User | No |
| elements | Bundle_Element[] | No |
| images | Bundle_Image[] | No |
| categories | Bundle_Category[] | No |
| _count | BundleCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| bundle_id | Int | Yes |
| element_id | Int | Yes |
| element_type | ElementType | Yes |
| status | GenericStatus | Yes |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| user | User | No |
| bundle | Bundle | No |
| element | Element | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| url | String | Yes |
| element_id | Int | Yes |
| created_at | DateTime | Yes |
| element | Element | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| url | String | Yes |
| bundle_id | Int | Yes |
| created_at | DateTime | Yes |
| bundle | Bundle | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| element_id | Int | Yes |
| title | String | Yes |
| description | String | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| element | Element | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| slug | String | Yes |
| description | String | No |
| type | AssetType | Yes |
| status | GenericStatus | Yes |
| image | String | No |
| banner | String | No |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| user | User | No |
| element_categories | Element_Category[] | No |
| bundle_categories | Bundle_Category[] | No |
| _count | CategoryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| element_id | Int | Yes |
| category_id | Int | Yes |
| created_at | DateTime | Yes |
| element | Element | No |
| category | Category | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| bundle_id | Int | Yes |
| category_id | Int | Yes |
| created_at | DateTime | Yes |
| bundle | Bundle | No |
| category | Category | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| slug | String | Yes |
| user_id | Int | Yes |
| description | String | No |
| image | String | No |
| banner | String | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| user | User | No |
| elements | Element_Tag[] | No |
| _count | TagCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| element_id | Int | Yes |
| tag_id | Int | Yes |
| created_at | DateTime | Yes |
| tag | Tag | No |
| element | Element | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop | String | Yes |
| state | String | No |
| isOnline | Boolean | Yes |
| scope | String | Yes |
| userId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| shop_id | Int | Yes |
| asset_type | AssetType | Yes |
| status | OrderStatus | Yes |
| sub_total | Decimal | Yes |
| discounted_amout | Decimal | No |
| coupon_id | Int | No |
| coupon_code | String | No |
| coupon_discount_type | DiscountType | No |
| coupon_discount_value | Decimal | No |
| grand_total | Decimal | Yes |
| affiliated_by | Int | No |
| affiliated_commission | Decimal | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| shop | Shop | No |
| coupon | Coupon | No |
| order_items | Order_Item[] | No |
| affiliator_commissions | Affiliator_Commission[] | No |
| _count | OrderCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| order_id | Int | Yes |
| asset_id | Int | Yes |
| asset_type | AssetType | Yes |
| price | Decimal | Yes |
| discounted_price | Decimal | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| order_bundle_id | Int | No |
| order | Order | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| code | String | Yes |
| status | CouponStatus | Yes |
| expired_at | DateTime | No |
| max_total_applied | Int | No |
| max_applied_by_shop | Int | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| min_order_amount | Decimal | No |
| max_discount_limit | Decimal | No |
| is_apply_on_asset_discount | Boolean | No |
| affiliated_by | Int | No |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| affiliator | Affiliator | No |
| user | User | No |
| orders | Order[] | No |
| affiliator_commissions | Affiliator_Commission[] | No |
| _count | CouponCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| user_id | Int | Yes |
| invited_by | Int | No |
| type | AffiliatorType | Yes |
| type_other | String | No |
| status | AffiliatorStatus | Yes |
| total_earned | Decimal | No |
| total_paid | Decimal | No |
| current_coupon_id | Int | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| user | User | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_Request[] | No |
| affiliator_commissions | Affiliator_Commission[] | No |
| coupons | Coupon[] | No |
| _count | AffiliatorCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| affiliator_id | Int | Yes |
| user_id | Int | Yes |
| order_id | Int | No |
| shop_id | Int | No |
| coupon_id | Int | No |
| coupon_code | String | No |
| order_amout | Decimal | No |
| coupon_discount_type | DiscountType | No |
| coupon_discount_value | Decimal | No |
| commission_type | DiscountType | Yes |
| commission_value | Decimal | Yes |
| amount | Decimal | Yes |
| status | CommissionStatus | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| affiliator | Affiliator | No |
| user | User | No |
| order | Order | No |
| shop | Shop | No |
| coupon | Coupon | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| affiliator_id | Int | Yes |
| status | CommissionWithdrawStatus | Yes |
| amount | Decimal | Yes |
| payment_method_id | Int | Yes |
| payment_method | PaymentMethod | Yes |
| payment_method_details | Json | Yes |
| assignee | Int | No |
| note | String | No |
| reject_reason | String | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| affiliator | Affiliator | No |
| payment_method_detail | User_Pament_Method | No |
| assigned_user | User | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user_id | Int | Yes |
| method | PaymentMethod | Yes |
| details | Json | Yes |
| is_default | Boolean | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| user | User | No |
| affiliator_withdraw_requests | Affiliator_Withdraw_Request[] | No |
| _count | User_Pament_MethodCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| tagline | String | Yes |
| description | String | Yes |
| type | PricingPlanType | Yes |
| is_recommended | Boolean | Yes |
| is_popular | Boolean | Yes |
| price | Decimal | Yes |
| discounted_price | Decimal | No |
| yearly_discounted_price | Decimal | No |
| trial_period | Int | No |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| user | User | No |
| subscriptions | Shop_Subscription[] | No |
| pricing_plan_features | Pricing_Plan_Feature[] | No |
| _count | Pricing_PlanCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| plan_id | Int | Yes |
| title | String | Yes |
| type | String | No |
| description | String | No |
| pricing_plan | Pricing_Plan | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| shop_id | Int | Yes |
| plan_id | Int | Yes |
| plan_type | PricingPlanType | Yes |
| status | SubscriptionStatus | Yes |
| created_at | DateTime | Yes |
| ended_at | DateTime | No |
| ended_type | SubscriptionEndedType | No |
| updated_at | DateTime | Yes |
| amount | Decimal | Yes |
| payment_method | PaymentMethod | Yes |
| plan | Pricing_Plan | No |
| shops | Shop[] | No |
| _count | Shop_SubscriptionCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user_id | Int | Yes |
| question | String | Yes |
| answer | String | Yes |
| status | FaqStatus | Yes |
| category_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| user | User | No |
| category | Faq_Category | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| user_id | Int | Yes |
| description | String | No |
| banner | String | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| user | User | No |
| faqs | Faq[] | No |
| _count | Faq_CategoryCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| url | String | Yes |
| type | AttachmentType | Yes |
| ref_id | Int | Yes |
| ref_type | AttachmentRefType | Yes |
| created_at | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop_id | Int | Yes |
| element_id | Int | Yes |
| element_type | ElementType | Yes |
| created_at | DateTime | Yes |
| shop | Shop | No |
| element | Element | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop_id | Int | Yes |
| element_id | Int | Yes |
| element_type | ElementType | Yes |
| created_at | DateTime | Yes |
| shop | Shop | No |
| element | Element | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop_id | Int | Yes |
| element_id | Int | Yes |
| element_type | ElementType | Yes |
| created_at | DateTime | Yes |
| shop | Shop | No |
| element | Element | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| user_id | Int | Yes |
| ref_id | Int | Yes |
| ref_type | SupportRefType | Yes |
| criteria | SupportCriteria | Yes |
| reason | String | Yes |
| description | String | Yes |
| status | SupportStatus | No |
| label | SupportLabel | No |
| assignee | Int | No |
| assigned_at | DateTime | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| user | User | No |
| ticket_messages | Ticket_Message[] | No |
| _count | Support_TicketCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| ticket_id | Int | Yes |
| user_id | Int | Yes |
| message | String | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| user | User | No |
| support_ticket | Support_Ticket | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| message | String | Yes |
| name | String | Yes |
| String | Yes | |
| phone | String | Yes |
| country_code | String | Yes |
| country | String | No |
| status | ContactStatus | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user_id | Int | Yes |
| role | TeamMemberRole | Yes |
| designation | String | No |
| badge | String | No |
| invited_by | Int | No |
| onboarded_at | DateTime | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| user | User | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| first_name | String | Yes |
| last_name | String | Yes |
| String | Yes | |
| password | String | No |
| phone | String | No |
| profile_photo | String | No |
| role | UserRole | Yes |
| status | UserStatus | No |
| is_verified | Boolean | No |
| is_shopify_user | Boolean | No |
| date_of_birth | DateTime | No |
| country_code | String | No |
| country | String | No |
| address | String | No |
| website_url | String | No |
| social_handles | Json | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ShopCountAggregateOutputType | No |
| _avg | ShopAvgAggregateOutputType | No |
| _sum | ShopSumAggregateOutputType | No |
| _min | ShopMinAggregateOutputType | No |
| _max | ShopMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| user_id | Int | Yes |
| shopify_shop_id | Int | Yes |
| name | String | Yes |
| domain | String | Yes |
| status | ShopStatus | Yes |
| subscription_id | Int | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| _count | ShopCountAggregateOutputType | No |
| _avg | ShopAvgAggregateOutputType | No |
| _sum | ShopSumAggregateOutputType | No |
| _min | ShopMinAggregateOutputType | No |
| _max | ShopMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ElementCountAggregateOutputType | No |
| _avg | ElementAvgAggregateOutputType | No |
| _sum | ElementSumAggregateOutputType | No |
| _min | ElementMinAggregateOutputType | No |
| _max | ElementMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| slug | String | Yes |
| description | String | Yes |
| featured_image | String | Yes |
| content | String | Yes |
| file_name | String | Yes |
| status | GenericStatus | Yes |
| type | ElementType | Yes |
| price | Decimal | Yes |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| demo_url | String | No |
| video_url | String | No |
| version | String | No |
| user_id | Int | Yes |
| wishlisted_count | Int | No |
| bookmarked_count | Int | No |
| added_theme_count | Int | No |
| view_count | Int | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| _count | ElementCountAggregateOutputType | No |
| _avg | ElementAvgAggregateOutputType | No |
| _sum | ElementSumAggregateOutputType | No |
| _min | ElementMinAggregateOutputType | No |
| _max | ElementMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BundleCountAggregateOutputType | No |
| _avg | BundleAvgAggregateOutputType | No |
| _sum | BundleSumAggregateOutputType | No |
| _min | BundleMinAggregateOutputType | No |
| _max | BundleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| slug | String | Yes |
| description | String | Yes |
| featured_image | String | Yes |
| status | GenericStatus | Yes |
| type | BundleType | Yes |
| is_auto_price | Boolean | No |
| price | Decimal | Yes |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| demo_url | String | No |
| video_url | String | No |
| version | String | No |
| user_id | Int | Yes |
| view_count | Int | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| _count | BundleCountAggregateOutputType | No |
| _avg | BundleAvgAggregateOutputType | No |
| _sum | BundleSumAggregateOutputType | No |
| _min | BundleMinAggregateOutputType | No |
| _max | BundleMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Bundle_ElementCountAggregateOutputType | No |
| _avg | Bundle_ElementAvgAggregateOutputType | No |
| _sum | Bundle_ElementSumAggregateOutputType | No |
| _min | Bundle_ElementMinAggregateOutputType | No |
| _max | Bundle_ElementMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| bundle_id | Int | Yes |
| element_id | Int | Yes |
| element_type | ElementType | Yes |
| status | GenericStatus | Yes |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| _count | Bundle_ElementCountAggregateOutputType | No |
| _avg | Bundle_ElementAvgAggregateOutputType | No |
| _sum | Bundle_ElementSumAggregateOutputType | No |
| _min | Bundle_ElementMinAggregateOutputType | No |
| _max | Bundle_ElementMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Element_ImageCountAggregateOutputType | No |
| _avg | Element_ImageAvgAggregateOutputType | No |
| _sum | Element_ImageSumAggregateOutputType | No |
| _min | Element_ImageMinAggregateOutputType | No |
| _max | Element_ImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| url | String | Yes |
| element_id | Int | Yes |
| created_at | DateTime | Yes |
| _count | Element_ImageCountAggregateOutputType | No |
| _avg | Element_ImageAvgAggregateOutputType | No |
| _sum | Element_ImageSumAggregateOutputType | No |
| _min | Element_ImageMinAggregateOutputType | No |
| _max | Element_ImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Bundle_ImageCountAggregateOutputType | No |
| _avg | Bundle_ImageAvgAggregateOutputType | No |
| _sum | Bundle_ImageSumAggregateOutputType | No |
| _min | Bundle_ImageMinAggregateOutputType | No |
| _max | Bundle_ImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| url | String | Yes |
| bundle_id | Int | Yes |
| created_at | DateTime | Yes |
| _count | Bundle_ImageCountAggregateOutputType | No |
| _avg | Bundle_ImageAvgAggregateOutputType | No |
| _sum | Bundle_ImageSumAggregateOutputType | No |
| _min | Bundle_ImageMinAggregateOutputType | No |
| _max | Bundle_ImageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Element_Best_UseCountAggregateOutputType | No |
| _avg | Element_Best_UseAvgAggregateOutputType | No |
| _sum | Element_Best_UseSumAggregateOutputType | No |
| _min | Element_Best_UseMinAggregateOutputType | No |
| _max | Element_Best_UseMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| element_id | Int | Yes |
| title | String | Yes |
| description | String | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| _count | Element_Best_UseCountAggregateOutputType | No |
| _avg | Element_Best_UseAvgAggregateOutputType | No |
| _sum | Element_Best_UseSumAggregateOutputType | No |
| _min | Element_Best_UseMinAggregateOutputType | No |
| _max | Element_Best_UseMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CategoryCountAggregateOutputType | No |
| _avg | CategoryAvgAggregateOutputType | No |
| _sum | CategorySumAggregateOutputType | No |
| _min | CategoryMinAggregateOutputType | No |
| _max | CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| slug | String | Yes |
| description | String | No |
| type | AssetType | Yes |
| status | GenericStatus | Yes |
| image | String | No |
| banner | String | No |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| _count | CategoryCountAggregateOutputType | No |
| _avg | CategoryAvgAggregateOutputType | No |
| _sum | CategorySumAggregateOutputType | No |
| _min | CategoryMinAggregateOutputType | No |
| _max | CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Element_CategoryCountAggregateOutputType | No |
| _avg | Element_CategoryAvgAggregateOutputType | No |
| _sum | Element_CategorySumAggregateOutputType | No |
| _min | Element_CategoryMinAggregateOutputType | No |
| _max | Element_CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| element_id | Int | Yes |
| category_id | Int | Yes |
| created_at | DateTime | Yes |
| _count | Element_CategoryCountAggregateOutputType | No |
| _avg | Element_CategoryAvgAggregateOutputType | No |
| _sum | Element_CategorySumAggregateOutputType | No |
| _min | Element_CategoryMinAggregateOutputType | No |
| _max | Element_CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Bundle_CategoryCountAggregateOutputType | No |
| _avg | Bundle_CategoryAvgAggregateOutputType | No |
| _sum | Bundle_CategorySumAggregateOutputType | No |
| _min | Bundle_CategoryMinAggregateOutputType | No |
| _max | Bundle_CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| bundle_id | Int | Yes |
| category_id | Int | Yes |
| created_at | DateTime | Yes |
| _count | Bundle_CategoryCountAggregateOutputType | No |
| _avg | Bundle_CategoryAvgAggregateOutputType | No |
| _sum | Bundle_CategorySumAggregateOutputType | No |
| _min | Bundle_CategoryMinAggregateOutputType | No |
| _max | Bundle_CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TagCountAggregateOutputType | No |
| _avg | TagAvgAggregateOutputType | No |
| _sum | TagSumAggregateOutputType | No |
| _min | TagMinAggregateOutputType | No |
| _max | TagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| slug | String | Yes |
| user_id | Int | Yes |
| description | String | No |
| image | String | No |
| banner | String | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| _count | TagCountAggregateOutputType | No |
| _avg | TagAvgAggregateOutputType | No |
| _sum | TagSumAggregateOutputType | No |
| _min | TagMinAggregateOutputType | No |
| _max | TagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Element_TagCountAggregateOutputType | No |
| _avg | Element_TagAvgAggregateOutputType | No |
| _sum | Element_TagSumAggregateOutputType | No |
| _min | Element_TagMinAggregateOutputType | No |
| _max | Element_TagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| element_id | Int | Yes |
| tag_id | Int | Yes |
| created_at | DateTime | Yes |
| _count | Element_TagCountAggregateOutputType | No |
| _avg | Element_TagAvgAggregateOutputType | No |
| _sum | Element_TagSumAggregateOutputType | No |
| _min | Element_TagMinAggregateOutputType | No |
| _max | Element_TagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SessionCountAggregateOutputType | No |
| _avg | SessionAvgAggregateOutputType | No |
| _sum | SessionSumAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop | String | Yes |
| state | String | No |
| isOnline | Boolean | Yes |
| scope | String | Yes |
| userId | Int | No |
| _count | SessionCountAggregateOutputType | No |
| _avg | SessionAvgAggregateOutputType | No |
| _sum | SessionSumAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | OrderCountAggregateOutputType | No |
| _avg | OrderAvgAggregateOutputType | No |
| _sum | OrderSumAggregateOutputType | No |
| _min | OrderMinAggregateOutputType | No |
| _max | OrderMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| shop_id | Int | Yes |
| asset_type | AssetType | Yes |
| status | OrderStatus | Yes |
| sub_total | Decimal | Yes |
| discounted_amout | Decimal | No |
| coupon_id | Int | No |
| coupon_code | String | No |
| coupon_discount_type | DiscountType | No |
| coupon_discount_value | Decimal | No |
| grand_total | Decimal | Yes |
| affiliated_by | Int | No |
| affiliated_commission | Decimal | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| _count | OrderCountAggregateOutputType | No |
| _avg | OrderAvgAggregateOutputType | No |
| _sum | OrderSumAggregateOutputType | No |
| _min | OrderMinAggregateOutputType | No |
| _max | OrderMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Order_ItemCountAggregateOutputType | No |
| _avg | Order_ItemAvgAggregateOutputType | No |
| _sum | Order_ItemSumAggregateOutputType | No |
| _min | Order_ItemMinAggregateOutputType | No |
| _max | Order_ItemMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| order_id | Int | Yes |
| asset_id | Int | Yes |
| asset_type | AssetType | Yes |
| price | Decimal | Yes |
| discounted_price | Decimal | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| order_bundle_id | Int | No |
| _count | Order_ItemCountAggregateOutputType | No |
| _avg | Order_ItemAvgAggregateOutputType | No |
| _sum | Order_ItemSumAggregateOutputType | No |
| _min | Order_ItemMinAggregateOutputType | No |
| _max | Order_ItemMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CouponCountAggregateOutputType | No |
| _avg | CouponAvgAggregateOutputType | No |
| _sum | CouponSumAggregateOutputType | No |
| _min | CouponMinAggregateOutputType | No |
| _max | CouponMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| code | String | Yes |
| status | CouponStatus | Yes |
| expired_at | DateTime | No |
| max_total_applied | Int | No |
| max_applied_by_shop | Int | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| min_order_amount | Decimal | No |
| max_discount_limit | Decimal | No |
| is_apply_on_asset_discount | Boolean | No |
| affiliated_by | Int | No |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| _count | CouponCountAggregateOutputType | No |
| _avg | CouponAvgAggregateOutputType | No |
| _sum | CouponSumAggregateOutputType | No |
| _min | CouponMinAggregateOutputType | No |
| _max | CouponMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AffiliatorCountAggregateOutputType | No |
| _avg | AffiliatorAvgAggregateOutputType | No |
| _sum | AffiliatorSumAggregateOutputType | No |
| _min | AffiliatorMinAggregateOutputType | No |
| _max | AffiliatorMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| user_id | Int | Yes |
| invited_by | Int | No |
| type | AffiliatorType | Yes |
| type_other | String | No |
| status | AffiliatorStatus | Yes |
| total_earned | Decimal | No |
| total_paid | Decimal | No |
| current_coupon_id | Int | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| _count | AffiliatorCountAggregateOutputType | No |
| _avg | AffiliatorAvgAggregateOutputType | No |
| _sum | AffiliatorSumAggregateOutputType | No |
| _min | AffiliatorMinAggregateOutputType | No |
| _max | AffiliatorMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Affiliator_CommissionCountAggregateOutputType | No |
| _avg | Affiliator_CommissionAvgAggregateOutputType | No |
| _sum | Affiliator_CommissionSumAggregateOutputType | No |
| _min | Affiliator_CommissionMinAggregateOutputType | No |
| _max | Affiliator_CommissionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| affiliator_id | Int | Yes |
| user_id | Int | Yes |
| order_id | Int | No |
| shop_id | Int | No |
| coupon_id | Int | No |
| coupon_code | String | No |
| order_amout | Decimal | No |
| coupon_discount_type | DiscountType | No |
| coupon_discount_value | Decimal | No |
| commission_type | DiscountType | Yes |
| commission_value | Decimal | Yes |
| amount | Decimal | Yes |
| status | CommissionStatus | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| _count | Affiliator_CommissionCountAggregateOutputType | No |
| _avg | Affiliator_CommissionAvgAggregateOutputType | No |
| _sum | Affiliator_CommissionSumAggregateOutputType | No |
| _min | Affiliator_CommissionMinAggregateOutputType | No |
| _max | Affiliator_CommissionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Affiliator_Withdraw_RequestCountAggregateOutputType | No |
| _avg | Affiliator_Withdraw_RequestAvgAggregateOutputType | No |
| _sum | Affiliator_Withdraw_RequestSumAggregateOutputType | No |
| _min | Affiliator_Withdraw_RequestMinAggregateOutputType | No |
| _max | Affiliator_Withdraw_RequestMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| affiliator_id | Int | Yes |
| status | CommissionWithdrawStatus | Yes |
| amount | Decimal | Yes |
| payment_method_id | Int | Yes |
| payment_method | PaymentMethod | Yes |
| payment_method_details | Json | Yes |
| assignee | Int | No |
| note | String | No |
| reject_reason | String | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| _count | Affiliator_Withdraw_RequestCountAggregateOutputType | No |
| _avg | Affiliator_Withdraw_RequestAvgAggregateOutputType | No |
| _sum | Affiliator_Withdraw_RequestSumAggregateOutputType | No |
| _min | Affiliator_Withdraw_RequestMinAggregateOutputType | No |
| _max | Affiliator_Withdraw_RequestMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | User_Pament_MethodCountAggregateOutputType | No |
| _avg | User_Pament_MethodAvgAggregateOutputType | No |
| _sum | User_Pament_MethodSumAggregateOutputType | No |
| _min | User_Pament_MethodMinAggregateOutputType | No |
| _max | User_Pament_MethodMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user_id | Int | Yes |
| method | PaymentMethod | Yes |
| details | Json | Yes |
| is_default | Boolean | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| _count | User_Pament_MethodCountAggregateOutputType | No |
| _avg | User_Pament_MethodAvgAggregateOutputType | No |
| _sum | User_Pament_MethodSumAggregateOutputType | No |
| _min | User_Pament_MethodMinAggregateOutputType | No |
| _max | User_Pament_MethodMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Pricing_PlanCountAggregateOutputType | No |
| _avg | Pricing_PlanAvgAggregateOutputType | No |
| _sum | Pricing_PlanSumAggregateOutputType | No |
| _min | Pricing_PlanMinAggregateOutputType | No |
| _max | Pricing_PlanMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| tagline | String | Yes |
| description | String | Yes |
| type | PricingPlanType | Yes |
| is_recommended | Boolean | Yes |
| is_popular | Boolean | Yes |
| price | Decimal | Yes |
| discounted_price | Decimal | No |
| yearly_discounted_price | Decimal | No |
| trial_period | Int | No |
| user_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| _count | Pricing_PlanCountAggregateOutputType | No |
| _avg | Pricing_PlanAvgAggregateOutputType | No |
| _sum | Pricing_PlanSumAggregateOutputType | No |
| _min | Pricing_PlanMinAggregateOutputType | No |
| _max | Pricing_PlanMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Pricing_Plan_FeatureCountAggregateOutputType | No |
| _avg | Pricing_Plan_FeatureAvgAggregateOutputType | No |
| _sum | Pricing_Plan_FeatureSumAggregateOutputType | No |
| _min | Pricing_Plan_FeatureMinAggregateOutputType | No |
| _max | Pricing_Plan_FeatureMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| plan_id | Int | Yes |
| title | String | Yes |
| type | String | No |
| description | String | No |
| _count | Pricing_Plan_FeatureCountAggregateOutputType | No |
| _avg | Pricing_Plan_FeatureAvgAggregateOutputType | No |
| _sum | Pricing_Plan_FeatureSumAggregateOutputType | No |
| _min | Pricing_Plan_FeatureMinAggregateOutputType | No |
| _max | Pricing_Plan_FeatureMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Shop_SubscriptionCountAggregateOutputType | No |
| _avg | Shop_SubscriptionAvgAggregateOutputType | No |
| _sum | Shop_SubscriptionSumAggregateOutputType | No |
| _min | Shop_SubscriptionMinAggregateOutputType | No |
| _max | Shop_SubscriptionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| shop_id | Int | Yes |
| plan_id | Int | Yes |
| plan_type | PricingPlanType | Yes |
| status | SubscriptionStatus | Yes |
| created_at | DateTime | Yes |
| ended_at | DateTime | No |
| ended_type | SubscriptionEndedType | No |
| updated_at | DateTime | Yes |
| amount | Decimal | Yes |
| payment_method | PaymentMethod | Yes |
| _count | Shop_SubscriptionCountAggregateOutputType | No |
| _avg | Shop_SubscriptionAvgAggregateOutputType | No |
| _sum | Shop_SubscriptionSumAggregateOutputType | No |
| _min | Shop_SubscriptionMinAggregateOutputType | No |
| _max | Shop_SubscriptionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FaqCountAggregateOutputType | No |
| _avg | FaqAvgAggregateOutputType | No |
| _sum | FaqSumAggregateOutputType | No |
| _min | FaqMinAggregateOutputType | No |
| _max | FaqMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user_id | Int | Yes |
| question | String | Yes |
| answer | String | Yes |
| status | FaqStatus | Yes |
| category_id | Int | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| _count | FaqCountAggregateOutputType | No |
| _avg | FaqAvgAggregateOutputType | No |
| _sum | FaqSumAggregateOutputType | No |
| _min | FaqMinAggregateOutputType | No |
| _max | FaqMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Faq_CategoryCountAggregateOutputType | No |
| _avg | Faq_CategoryAvgAggregateOutputType | No |
| _sum | Faq_CategorySumAggregateOutputType | No |
| _min | Faq_CategoryMinAggregateOutputType | No |
| _max | Faq_CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | String | Yes |
| user_id | Int | Yes |
| description | String | No |
| banner | String | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| _count | Faq_CategoryCountAggregateOutputType | No |
| _avg | Faq_CategoryAvgAggregateOutputType | No |
| _sum | Faq_CategorySumAggregateOutputType | No |
| _min | Faq_CategoryMinAggregateOutputType | No |
| _max | Faq_CategoryMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AttachmentCountAggregateOutputType | No |
| _avg | AttachmentAvgAggregateOutputType | No |
| _sum | AttachmentSumAggregateOutputType | No |
| _min | AttachmentMinAggregateOutputType | No |
| _max | AttachmentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| url | String | Yes |
| type | AttachmentType | Yes |
| ref_id | Int | Yes |
| ref_type | AttachmentRefType | Yes |
| created_at | DateTime | Yes |
| _count | AttachmentCountAggregateOutputType | No |
| _avg | AttachmentAvgAggregateOutputType | No |
| _sum | AttachmentSumAggregateOutputType | No |
| _min | AttachmentMinAggregateOutputType | No |
| _max | AttachmentMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | WishlistCountAggregateOutputType | No |
| _avg | WishlistAvgAggregateOutputType | No |
| _sum | WishlistSumAggregateOutputType | No |
| _min | WishlistMinAggregateOutputType | No |
| _max | WishlistMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop_id | Int | Yes |
| element_id | Int | Yes |
| element_type | ElementType | Yes |
| created_at | DateTime | Yes |
| _count | WishlistCountAggregateOutputType | No |
| _avg | WishlistAvgAggregateOutputType | No |
| _sum | WishlistSumAggregateOutputType | No |
| _min | WishlistMinAggregateOutputType | No |
| _max | WishlistMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BookmarkCountAggregateOutputType | No |
| _avg | BookmarkAvgAggregateOutputType | No |
| _sum | BookmarkSumAggregateOutputType | No |
| _min | BookmarkMinAggregateOutputType | No |
| _max | BookmarkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop_id | Int | Yes |
| element_id | Int | Yes |
| element_type | ElementType | Yes |
| created_at | DateTime | Yes |
| _count | BookmarkCountAggregateOutputType | No |
| _avg | BookmarkAvgAggregateOutputType | No |
| _sum | BookmarkSumAggregateOutputType | No |
| _min | BookmarkMinAggregateOutputType | No |
| _max | BookmarkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Recent_Used_ElementCountAggregateOutputType | No |
| _avg | Recent_Used_ElementAvgAggregateOutputType | No |
| _sum | Recent_Used_ElementSumAggregateOutputType | No |
| _min | Recent_Used_ElementMinAggregateOutputType | No |
| _max | Recent_Used_ElementMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop_id | Int | Yes |
| element_id | Int | Yes |
| element_type | ElementType | Yes |
| created_at | DateTime | Yes |
| _count | Recent_Used_ElementCountAggregateOutputType | No |
| _avg | Recent_Used_ElementAvgAggregateOutputType | No |
| _sum | Recent_Used_ElementSumAggregateOutputType | No |
| _min | Recent_Used_ElementMinAggregateOutputType | No |
| _max | Recent_Used_ElementMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Support_TicketCountAggregateOutputType | No |
| _avg | Support_TicketAvgAggregateOutputType | No |
| _sum | Support_TicketSumAggregateOutputType | No |
| _min | Support_TicketMinAggregateOutputType | No |
| _max | Support_TicketMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | String | Yes |
| user_id | Int | Yes |
| ref_id | Int | Yes |
| ref_type | SupportRefType | Yes |
| criteria | SupportCriteria | Yes |
| reason | String | Yes |
| description | String | Yes |
| status | SupportStatus | No |
| label | SupportLabel | No |
| assignee | Int | No |
| assigned_at | DateTime | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| _count | Support_TicketCountAggregateOutputType | No |
| _avg | Support_TicketAvgAggregateOutputType | No |
| _sum | Support_TicketSumAggregateOutputType | No |
| _min | Support_TicketMinAggregateOutputType | No |
| _max | Support_TicketMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Ticket_MessageCountAggregateOutputType | No |
| _avg | Ticket_MessageAvgAggregateOutputType | No |
| _sum | Ticket_MessageSumAggregateOutputType | No |
| _min | Ticket_MessageMinAggregateOutputType | No |
| _max | Ticket_MessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| ticket_id | Int | Yes |
| user_id | Int | Yes |
| message | String | Yes |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| _count | Ticket_MessageCountAggregateOutputType | No |
| _avg | Ticket_MessageAvgAggregateOutputType | No |
| _sum | Ticket_MessageSumAggregateOutputType | No |
| _min | Ticket_MessageMinAggregateOutputType | No |
| _max | Ticket_MessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Contact_RequestCountAggregateOutputType | No |
| _avg | Contact_RequestAvgAggregateOutputType | No |
| _sum | Contact_RequestSumAggregateOutputType | No |
| _min | Contact_RequestMinAggregateOutputType | No |
| _max | Contact_RequestMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| message | String | Yes |
| name | String | Yes |
| String | Yes | |
| phone | String | Yes |
| country_code | String | Yes |
| country | String | No |
| status | ContactStatus | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| _count | Contact_RequestCountAggregateOutputType | No |
| _avg | Contact_RequestAvgAggregateOutputType | No |
| _sum | Contact_RequestSumAggregateOutputType | No |
| _min | Contact_RequestMinAggregateOutputType | No |
| _max | Contact_RequestMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | Team_MemberCountAggregateOutputType | No |
| _avg | Team_MemberAvgAggregateOutputType | No |
| _sum | Team_MemberSumAggregateOutputType | No |
| _min | Team_MemberMinAggregateOutputType | No |
| _max | Team_MemberMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user_id | Int | Yes |
| role | TeamMemberRole | Yes |
| designation | String | No |
| badge | String | No |
| invited_by | Int | No |
| onboarded_at | DateTime | No |
| created_at | DateTime | Yes |
| updated_at | DateTime | Yes |
| _count | Team_MemberCountAggregateOutputType | No |
| _avg | Team_MemberAvgAggregateOutputType | No |
| _sum | Team_MemberSumAggregateOutputType | No |
| _min | Team_MemberMinAggregateOutputType | No |
| _max | Team_MemberMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| shops | Int | Yes |
| bundles | Int | Yes |
| bundle_elements | Int | Yes |
| elements | Int | Yes |
| pricing_plans | Int | Yes |
| faqs | Int | Yes |
| faq_categories | Int | Yes |
| categories | Int | Yes |
| tags | Int | Yes |
| support_tickets | Int | Yes |
| ticket_messages | Int | Yes |
| affiliators | Int | Yes |
| affiliator_commissions | Int | Yes |
| affiliator_withdraw_requests | Int | Yes |
| coupons | Int | Yes |
| user_pament_methods | Int | Yes |
| team_members | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| first_name | Int | Yes |
| last_name | Int | Yes |
| Int | Yes | |
| password | Int | Yes |
| phone | Int | Yes |
| profile_photo | Int | Yes |
| role | Int | Yes |
| status | Int | Yes |
| is_verified | Int | Yes |
| is_shopify_user | Int | Yes |
| date_of_birth | Int | Yes |
| country_code | Int | Yes |
| country | Int | Yes |
| address | Int | Yes |
| website_url | Int | Yes |
| social_handles | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| deleted_by | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| deleted_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | No |
| phone | String | No |
| profile_photo | String | No |
| role | UserRole | No |
| status | UserStatus | No |
| is_verified | Boolean | No |
| is_shopify_user | Boolean | No |
| date_of_birth | DateTime | No |
| country_code | String | No |
| country | String | No |
| address | String | No |
| website_url | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| first_name | String | No |
| last_name | String | No |
| String | No | |
| password | String | No |
| phone | String | No |
| profile_photo | String | No |
| role | UserRole | No |
| status | UserStatus | No |
| is_verified | Boolean | No |
| is_shopify_user | Boolean | No |
| date_of_birth | DateTime | No |
| country_code | String | No |
| country | String | No |
| address | String | No |
| website_url | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| orders | Int | Yes |
| bookmarked_elements | Int | Yes |
| wishlisted_elements | Int | Yes |
| recent_used_elements | Int | Yes |
| affiliator_commissions | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| user_id | Int | Yes |
| shopify_shop_id | Int | Yes |
| name | Int | Yes |
| domain | Int | Yes |
| status | Int | Yes |
| subscription_id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user_id | Float | No |
| shopify_shop_id | Float | No |
| subscription_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| subscription_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| subscription_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| shopify_shop_id | Int | No |
| name | String | No |
| domain | String | No |
| status | ShopStatus | No |
| subscription_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| images | Int | Yes |
| best_Uses | Int | Yes |
| tags | Int | Yes |
| categories | Int | Yes |
| bundles | Int | Yes |
| wishlisted_elements | Int | Yes |
| bookmarked_elements | Int | Yes |
| recent_used_elements | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| slug | Int | Yes |
| description | Int | Yes |
| featured_image | Int | Yes |
| content | Int | Yes |
| file_name | Int | Yes |
| status | Int | Yes |
| type | Int | Yes |
| price | Int | Yes |
| discount_type | Int | Yes |
| discount_value | Int | Yes |
| demo_url | Int | Yes |
| video_url | Int | Yes |
| version | Int | Yes |
| user_id | Int | Yes |
| wishlisted_count | Int | Yes |
| bookmarked_count | Int | Yes |
| added_theme_count | Int | Yes |
| view_count | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| deleted_by | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| price | Decimal | No |
| discount_value | Decimal | No |
| user_id | Float | No |
| wishlisted_count | Float | No |
| bookmarked_count | Float | No |
| added_theme_count | Float | No |
| view_count | Float | No |
| deleted_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| price | Decimal | No |
| discount_value | Decimal | No |
| user_id | Int | No |
| wishlisted_count | Int | No |
| bookmarked_count | Int | No |
| added_theme_count | Int | No |
| view_count | Int | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| demo_url | String | No |
| video_url | String | No |
| version | String | No |
| user_id | Int | No |
| wishlisted_count | Int | No |
| bookmarked_count | Int | No |
| added_theme_count | Int | No |
| view_count | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| content | String | No |
| file_name | String | No |
| status | GenericStatus | No |
| type | ElementType | No |
| price | Decimal | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| demo_url | String | No |
| video_url | String | No |
| version | String | No |
| user_id | Int | No |
| wishlisted_count | Int | No |
| bookmarked_count | Int | No |
| added_theme_count | Int | No |
| view_count | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| elements | Int | Yes |
| images | Int | Yes |
| categories | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| slug | Int | Yes |
| description | Int | Yes |
| featured_image | Int | Yes |
| status | Int | Yes |
| type | Int | Yes |
| is_auto_price | Int | Yes |
| price | Int | Yes |
| discount_type | Int | Yes |
| discount_value | Int | Yes |
| demo_url | Int | Yes |
| video_url | Int | Yes |
| version | Int | Yes |
| user_id | Int | Yes |
| view_count | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| deleted_by | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| price | Decimal | No |
| discount_value | Decimal | No |
| user_id | Float | No |
| view_count | Float | No |
| deleted_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| price | Decimal | No |
| discount_value | Decimal | No |
| user_id | Int | No |
| view_count | Int | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | No |
| price | Decimal | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| demo_url | String | No |
| video_url | String | No |
| version | String | No |
| user_id | Int | No |
| view_count | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| featured_image | String | No |
| status | GenericStatus | No |
| type | BundleType | No |
| is_auto_price | Boolean | No |
| price | Decimal | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| demo_url | String | No |
| video_url | String | No |
| version | String | No |
| user_id | Int | No |
| view_count | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| bundle_id | Int | Yes |
| element_id | Int | Yes |
| element_type | Int | Yes |
| status | Int | Yes |
| user_id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| deleted_by | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| bundle_id | Float | No |
| element_id | Float | No |
| user_id | Float | No |
| deleted_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| element_id | Int | No |
| user_id | Int | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| status | GenericStatus | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| status | GenericStatus | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| url | Int | Yes |
| element_id | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| element_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| element_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| element_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| url | Int | Yes |
| bundle_id | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| bundle_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| bundle_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| url | String | No |
| bundle_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| element_id | Int | Yes |
| title | Int | Yes |
| description | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| element_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| title | String | No |
| description | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| title | String | No |
| description | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| element_categories | Int | Yes |
| bundle_categories | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| slug | Int | Yes |
| description | Int | Yes |
| type | Int | Yes |
| status | Int | Yes |
| image | Int | Yes |
| banner | Int | Yes |
| user_id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| deleted_by | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user_id | Float | No |
| deleted_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | No |
| banner | String | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| description | String | No |
| type | AssetType | No |
| status | GenericStatus | No |
| image | String | No |
| banner | String | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| element_id | Int | Yes |
| category_id | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| element_id | Float | No |
| category_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| category_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| bundle_id | Int | Yes |
| category_id | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| bundle_id | Float | No |
| category_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| category_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| bundle_id | Int | No |
| category_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| elements | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| slug | Int | Yes |
| user_id | Int | Yes |
| description | Int | Yes |
| image | Int | Yes |
| banner | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| deleted_by | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user_id | Float | No |
| deleted_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| user_id | Int | No |
| description | String | No |
| image | String | No |
| banner | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| slug | String | No |
| user_id | Int | No |
| description | String | No |
| image | String | No |
| banner | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| element_id | Int | Yes |
| tag_id | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| element_id | Float | No |
| tag_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| tag_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| tag_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| element_id | Int | No |
| tag_id | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop | Int | Yes |
| state | Int | Yes |
| isOnline | Int | Yes |
| scope | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| userId | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| userId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop | String | No |
| state | String | No |
| isOnline | Boolean | No |
| scope | String | No |
| userId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop | String | No |
| state | String | No |
| isOnline | Boolean | No |
| scope | String | No |
| userId | Int | No |
| Name | Type | Nullable |
|---|---|---|
| order_items | Int | Yes |
| affiliator_commissions | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| shop_id | Int | Yes |
| asset_type | Int | Yes |
| status | Int | Yes |
| sub_total | Int | Yes |
| discounted_amout | Int | Yes |
| coupon_id | Int | Yes |
| coupon_code | Int | Yes |
| coupon_discount_type | Int | Yes |
| coupon_discount_value | Int | Yes |
| grand_total | Int | Yes |
| affiliated_by | Int | Yes |
| affiliated_commission | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| shop_id | Float | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | No |
| coupon_id | Float | No |
| coupon_discount_value | Decimal | No |
| grand_total | Decimal | No |
| affiliated_by | Float | No |
| affiliated_commission | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | No |
| coupon_id | Int | No |
| coupon_discount_value | Decimal | No |
| grand_total | Decimal | No |
| affiliated_by | Int | No |
| affiliated_commission | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | No |
| coupon_id | Int | No |
| coupon_code | String | No |
| coupon_discount_type | DiscountType | No |
| coupon_discount_value | Decimal | No |
| grand_total | Decimal | No |
| affiliated_by | Int | No |
| affiliated_commission | Decimal | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| asset_type | AssetType | No |
| status | OrderStatus | No |
| sub_total | Decimal | No |
| discounted_amout | Decimal | No |
| coupon_id | Int | No |
| coupon_code | String | No |
| coupon_discount_type | DiscountType | No |
| coupon_discount_value | Decimal | No |
| grand_total | Decimal | No |
| affiliated_by | Int | No |
| affiliated_commission | Decimal | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| order_id | Int | Yes |
| asset_id | Int | Yes |
| asset_type | Int | Yes |
| price | Int | Yes |
| discounted_price | Int | Yes |
| discount_type | Int | Yes |
| discount_value | Int | Yes |
| order_bundle_id | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| order_id | Float | No |
| asset_id | Float | No |
| price | Decimal | No |
| discounted_price | Decimal | No |
| discount_value | Decimal | No |
| order_bundle_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| order_id | Int | No |
| asset_id | Int | No |
| price | Decimal | No |
| discounted_price | Decimal | No |
| discount_value | Decimal | No |
| order_bundle_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| order_id | Int | No |
| asset_id | Int | No |
| asset_type | AssetType | No |
| price | Decimal | No |
| discounted_price | Decimal | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| order_bundle_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| order_id | Int | No |
| asset_id | Int | No |
| asset_type | AssetType | No |
| price | Decimal | No |
| discounted_price | Decimal | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| order_bundle_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| orders | Int | Yes |
| affiliator_commissions | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| code | Int | Yes |
| status | Int | Yes |
| expired_at | Int | Yes |
| max_total_applied | Int | Yes |
| max_applied_by_shop | Int | Yes |
| discount_type | Int | Yes |
| discount_value | Int | Yes |
| min_order_amount | Int | Yes |
| max_discount_limit | Int | Yes |
| is_apply_on_asset_discount | Int | Yes |
| affiliated_by | Int | Yes |
| commission_type | Int | Yes |
| commission_value | Int | Yes |
| user_id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| deleted_by | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| max_total_applied | Float | No |
| max_applied_by_shop | Float | No |
| discount_value | Decimal | No |
| min_order_amount | Decimal | No |
| max_discount_limit | Decimal | No |
| affiliated_by | Float | No |
| commission_value | Decimal | No |
| user_id | Float | No |
| deleted_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| max_total_applied | Int | No |
| max_applied_by_shop | Int | No |
| discount_value | Decimal | No |
| min_order_amount | Decimal | No |
| max_discount_limit | Decimal | No |
| affiliated_by | Int | No |
| commission_value | Decimal | No |
| user_id | Int | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | No |
| max_total_applied | Int | No |
| max_applied_by_shop | Int | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| min_order_amount | Decimal | No |
| max_discount_limit | Decimal | No |
| is_apply_on_asset_discount | Boolean | No |
| affiliated_by | Int | No |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| code | String | No |
| status | CouponStatus | No |
| expired_at | DateTime | No |
| max_total_applied | Int | No |
| max_applied_by_shop | Int | No |
| discount_type | DiscountType | No |
| discount_value | Decimal | No |
| min_order_amount | Decimal | No |
| max_discount_limit | Decimal | No |
| is_apply_on_asset_discount | Boolean | No |
| affiliated_by | Int | No |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| affiliator_withdraw_requests | Int | Yes |
| affiliator_commissions | Int | Yes |
| coupons | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| user_id | Int | Yes |
| invited_by | Int | Yes |
| type | Int | Yes |
| type_other | Int | Yes |
| status | Int | Yes |
| total_earned | Int | Yes |
| total_paid | Int | Yes |
| current_coupon_id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| deleted_by | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user_id | Float | No |
| invited_by | Float | No |
| total_earned | Decimal | No |
| total_paid | Decimal | No |
| current_coupon_id | Float | No |
| deleted_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| invited_by | Int | No |
| total_earned | Decimal | No |
| total_paid | Decimal | No |
| current_coupon_id | Int | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| invited_by | Int | No |
| type | AffiliatorType | No |
| type_other | String | No |
| status | AffiliatorStatus | No |
| total_earned | Decimal | No |
| total_paid | Decimal | No |
| current_coupon_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| invited_by | Int | No |
| type | AffiliatorType | No |
| type_other | String | No |
| status | AffiliatorStatus | No |
| total_earned | Decimal | No |
| total_paid | Decimal | No |
| current_coupon_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| affiliator_id | Int | Yes |
| user_id | Int | Yes |
| order_id | Int | Yes |
| shop_id | Int | Yes |
| coupon_id | Int | Yes |
| coupon_code | Int | Yes |
| order_amout | Int | Yes |
| coupon_discount_type | Int | Yes |
| coupon_discount_value | Int | Yes |
| commission_type | Int | Yes |
| commission_value | Int | Yes |
| amount | Int | Yes |
| status | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| affiliator_id | Float | No |
| user_id | Float | No |
| order_id | Float | No |
| shop_id | Float | No |
| coupon_id | Float | No |
| order_amout | Decimal | No |
| coupon_discount_value | Decimal | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| affiliator_id | Int | No |
| user_id | Int | No |
| order_id | Int | No |
| shop_id | Int | No |
| coupon_id | Int | No |
| order_amout | Decimal | No |
| coupon_discount_value | Decimal | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| user_id | Int | No |
| order_id | Int | No |
| shop_id | Int | No |
| coupon_id | Int | No |
| coupon_code | String | No |
| order_amout | Decimal | No |
| coupon_discount_type | DiscountType | No |
| coupon_discount_value | Decimal | No |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| user_id | Int | No |
| order_id | Int | No |
| shop_id | Int | No |
| coupon_id | Int | No |
| coupon_code | String | No |
| order_amout | Decimal | No |
| coupon_discount_type | DiscountType | No |
| coupon_discount_value | Decimal | No |
| commission_type | DiscountType | No |
| commission_value | Decimal | No |
| amount | Decimal | No |
| status | CommissionStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| affiliator_id | Int | Yes |
| status | Int | Yes |
| amount | Int | Yes |
| payment_method_id | Int | Yes |
| payment_method | Int | Yes |
| payment_method_details | Int | Yes |
| assignee | Int | Yes |
| note | Int | Yes |
| reject_reason | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| affiliator_id | Float | No |
| amount | Decimal | No |
| payment_method_id | Float | No |
| assignee | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| affiliator_id | Int | No |
| amount | Decimal | No |
| payment_method_id | Int | No |
| assignee | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method_id | Int | No |
| payment_method | PaymentMethod | No |
| assignee | Int | No |
| note | String | No |
| reject_reason | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| affiliator_id | Int | No |
| status | CommissionWithdrawStatus | No |
| amount | Decimal | No |
| payment_method_id | Int | No |
| payment_method | PaymentMethod | No |
| assignee | Int | No |
| note | String | No |
| reject_reason | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| affiliator_withdraw_requests | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user_id | Int | Yes |
| method | Int | Yes |
| details | Int | Yes |
| is_default | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| method | PaymentMethod | No |
| is_default | Boolean | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| method | PaymentMethod | No |
| is_default | Boolean | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| subscriptions | Int | Yes |
| pricing_plan_features | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| tagline | Int | Yes |
| description | Int | Yes |
| type | Int | Yes |
| is_recommended | Int | Yes |
| is_popular | Int | Yes |
| price | Int | Yes |
| discounted_price | Int | Yes |
| yearly_discounted_price | Int | Yes |
| trial_period | Int | Yes |
| user_id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| deleted_by | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| price | Decimal | No |
| discounted_price | Decimal | No |
| yearly_discounted_price | Decimal | No |
| trial_period | Float | No |
| user_id | Float | No |
| deleted_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| price | Decimal | No |
| discounted_price | Decimal | No |
| yearly_discounted_price | Decimal | No |
| trial_period | Int | No |
| user_id | Int | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | No |
| yearly_discounted_price | Decimal | No |
| trial_period | Int | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| tagline | String | No |
| description | String | No |
| type | PricingPlanType | No |
| is_recommended | Boolean | No |
| is_popular | Boolean | No |
| price | Decimal | No |
| discounted_price | Decimal | No |
| yearly_discounted_price | Decimal | No |
| trial_period | Int | No |
| user_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| plan_id | Int | Yes |
| title | Int | Yes |
| type | Int | Yes |
| description | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| plan_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| plan_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| plan_id | Int | No |
| title | String | No |
| type | String | No |
| description | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| plan_id | Int | No |
| title | String | No |
| type | String | No |
| description | String | No |
| Name | Type | Nullable |
|---|---|---|
| shops | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| shop_id | Int | Yes |
| plan_id | Int | Yes |
| plan_type | Int | Yes |
| status | Int | Yes |
| created_at | Int | Yes |
| ended_at | Int | Yes |
| ended_type | Int | Yes |
| updated_at | Int | Yes |
| amount | Int | Yes |
| payment_method | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| shop_id | Float | No |
| plan_id | Float | No |
| amount | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| plan_id | Int | No |
| amount | Decimal | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| plan_id | Int | No |
| plan_type | PricingPlanType | No |
| status | SubscriptionStatus | No |
| created_at | DateTime | No |
| ended_at | DateTime | No |
| ended_type | SubscriptionEndedType | No |
| updated_at | DateTime | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| shop_id | Int | No |
| plan_id | Int | No |
| plan_type | PricingPlanType | No |
| status | SubscriptionStatus | No |
| created_at | DateTime | No |
| ended_at | DateTime | No |
| ended_type | SubscriptionEndedType | No |
| updated_at | DateTime | No |
| amount | Decimal | No |
| payment_method | PaymentMethod | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user_id | Int | Yes |
| question | Int | Yes |
| answer | Int | Yes |
| status | Int | Yes |
| category_id | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| deleted_by | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user_id | Float | No |
| category_id | Float | No |
| deleted_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| category_id | Int | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| question | String | No |
| answer | String | No |
| status | FaqStatus | No |
| category_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| question | String | No |
| answer | String | No |
| status | FaqStatus | No |
| category_id | Int | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| faqs | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| user_id | Int | Yes |
| description | Int | Yes |
| banner | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| deleted_at | Int | Yes |
| deleted_by | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user_id | Float | No |
| deleted_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| user_id | Int | No |
| description | String | No |
| banner | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| name | String | No |
| user_id | Int | No |
| description | String | No |
| banner | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| deleted_at | DateTime | No |
| deleted_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| url | Int | Yes |
| type | Int | Yes |
| ref_id | Int | Yes |
| ref_type | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| ref_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| ref_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| url | String | No |
| type | AttachmentType | No |
| ref_id | Int | No |
| ref_type | AttachmentRefType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| url | String | No |
| type | AttachmentType | No |
| ref_id | Int | No |
| ref_type | AttachmentRefType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop_id | Int | Yes |
| element_id | Int | Yes |
| element_type | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| shop_id | Float | No |
| element_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop_id | Int | Yes |
| element_id | Int | Yes |
| element_type | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| shop_id | Float | No |
| element_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| shop_id | Int | Yes |
| element_id | Int | Yes |
| element_type | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| shop_id | Float | No |
| element_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| shop_id | Int | No |
| element_id | Int | No |
| element_type | ElementType | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| ticket_messages | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| uuid | Int | Yes |
| user_id | Int | Yes |
| ref_id | Int | Yes |
| ref_type | Int | Yes |
| criteria | Int | Yes |
| reason | Int | Yes |
| description | Int | Yes |
| status | Int | Yes |
| label | Int | Yes |
| assignee | Int | Yes |
| assigned_at | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user_id | Float | No |
| ref_id | Float | No |
| assignee | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| ref_id | Int | No |
| assignee | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| ref_id | Int | No |
| ref_type | SupportRefType | No |
| criteria | SupportCriteria | No |
| reason | String | No |
| description | String | No |
| status | SupportStatus | No |
| label | SupportLabel | No |
| assignee | Int | No |
| assigned_at | DateTime | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| uuid | String | No |
| user_id | Int | No |
| ref_id | Int | No |
| ref_type | SupportRefType | No |
| criteria | SupportCriteria | No |
| reason | String | No |
| description | String | No |
| status | SupportStatus | No |
| label | SupportLabel | No |
| assignee | Int | No |
| assigned_at | DateTime | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| ticket_id | Int | Yes |
| user_id | Int | Yes |
| message | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| ticket_id | Float | No |
| user_id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| ticket_id | Int | No |
| user_id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| ticket_id | Int | No |
| user_id | Int | No |
| message | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| ticket_id | Int | No |
| user_id | Int | No |
| message | String | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| message | Int | Yes |
| name | Int | Yes |
| Int | Yes | |
| phone | Int | Yes |
| country_code | Int | Yes |
| country | Int | Yes |
| status | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| message | String | No |
| name | String | No |
| String | No | |
| phone | String | No |
| country_code | String | No |
| country | String | No |
| status | ContactStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| message | String | No |
| name | String | No |
| String | No | |
| phone | String | No |
| country_code | String | No |
| country | String | No |
| status | ContactStatus | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user_id | Int | Yes |
| role | Int | Yes |
| designation | Int | Yes |
| badge | Int | Yes |
| invited_by | Int | Yes |
| onboarded_at | Int | Yes |
| created_at | Int | Yes |
| updated_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Float | No |
| user_id | Float | No |
| invited_by | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| invited_by | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| role | TeamMemberRole | No |
| designation | String | No |
| badge | String | No |
| invited_by | Int | No |
| onboarded_at | DateTime | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | No |
| user_id | Int | No |
| role | TeamMemberRole | No |
| designation | String | No |
| badge | String | No |
| invited_by | Int | No |
| onboarded_at | DateTime | No |
| created_at | DateTime | No |
| updated_at | DateTime | No |